/* Reset básico para eliminar márgenes y padding predeterminados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos globales */
body {
  font-family: "Arial", sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  position: relative;
  background-color: #000; /* Fondo negro hasta que pongas tu imagen */
}

/* Clase para el fondo donde se podrá añadir una imagen */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(background.png);
  z-index: -1;
  opacity: 0.7; /* Transparencia para dar un toque elegante */
}

/* Contenedor principal */
.content {
  text-align: center;
  z-index: 1;
}

/* Logo centrado */
.logo {
  margin-bottom: 50px;
}

.title {
  font-size: 60px;
}

/* Estilo para la imagen del logo */
.logo-img {
  width: 650px;
  max-width: 90vw;
  height: auto;
}

/* Estilos para los botones */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  font-size: 1.2rem;
  padding: 15px 30px;
  text-decoration: none;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: black;
}

/* Responsivo: Ajustes para pantallas pequeñas */
@media (max-width: 600px) {
  .title {
    font-size: 50px;
  }
}
