/* Importar la fuente correctamente */
@font-face {
  font-family: 'PlantinMTProLight';
  src: url('/Font Plantin/Plantin MT Pro Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* General styles */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PlantinMTProLight', Arial, sans-serif;
  width: 100%;
  height: 100%;
  background-color: #051734;
  overflow: hidden;
  position: relative;
}

/* Logo separado del container */
.logo-container {
  width: 100%;
  text-align: center;
  margin-top: 2%;
}

.logo {
  max-width: 12%;
}

/* Central content */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Botones en texto */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Margen del 3% entre cada botón */
.btn {
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'PlantinMTProLight', Arial, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: white;
  position: relative;
  transition: transform 0.3s ease;
  padding: 5px 0;
  margin-top: 18%; /* Margen superior entre botones */
}

.btn:first-child {
  margin-top: 0; /* El primer botón no necesita margen arriba */
}

.btn:hover {
  transform: scale(1.1);
}

/* Línea debajo del botón */
.underline {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #df3070;
  margin: 5px auto 0;
  transition: width 0.3s ease-in-out;
}

.btn:hover .underline {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    max-width: 70%;
  }

  .btn {
    font-size: 20px;
  }
}