/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Imagen del logo */
.logo {
  width: 80px; /* 👈 Ajustá este valor al tamaño que quieras */
  height: auto;
  margin-bottom: 2rem;
}

/* Títulos y textos */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

p {
  font-size: 1.25rem;
  max-width: 400px;
  transition: all 0.3s ease;
}

/* Responsive ajustes para móviles */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Selector de idioma */
.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
}

select {
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  background: #fff;
  color: #000;
  cursor: pointer;
}

select:hover {
  background: #f0f0f0;
}

select:focus {
  outline: none;
}
