/* Tipografia Instrument Sans */
@font-face {
  font-family: 'Instrument Sans';
  src: url('typography/InstrumentSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('typography/InstrumentSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Colors corporatius */
:root {
  --midnight: #1E1B1A;
  --white: #F6F6F6;
  --orange: #FF3D00;
  --black: #1E1B1A;
  --arsenic70: rgba(30, 27, 26, 0.7);
  --smoke70: rgba(246, 246, 246, 0.7);
  --cloud: #F6F6F6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--midnight);
  background-image: url('images/img5-1920.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--cloud);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  min-height: 100dvh;
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

.message p {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--white);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--smoke70);
}


/* Estilo para los enlaces */
.social-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.social-links li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

 a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-links a img {
  height: 1.4rem;
  width: 1.4rem;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  color: white;
  text-shadow: 0 0 5px var(--orange);
}

.lang-selector {
    margin: 1rem;
    text-align: right;
    color: var(--cloud);
}

.lang-selector select {
    font-size: 1rem;
    color: var(--cloud);
    font-weight: 800;
    background: var(--black);
    border-radius: 100px;
    border: 0px;
    padding: 10px;
    margin: 10px;
    width: 64px;
    text-align: center;
}