body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  min-height: 100vh;
  background-image: url('assets/images/FotoPortada.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

h1 {
  font-size: 3em; /* Más grande */
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 8px #000;
}

.btn-link {
  display: inline-block;
  margin: 20px;
  padding: 20px 40px; /* Más grande */
  font-size: 2em;     /* Más grande */
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 12px; /* Más redondeado */
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2); /* Más sombra */
  width: 80vw;
  max-width: 400px;   /* Más ancho máximo */
}

.btn-link:hover {
  background-color: #388E3C;
}

/* Haz que la página sea responsiva */
@media (max-width: 600px) {
  h1 {
    font-size: 2em; /* Más grande en móvil */
    margin-top: 20px;
  }
  .btn-link {
    font-size: 1.5em;   /* Más grande en móvil */
    padding: 16px 10vw; /* Más grande en móvil */
    width: 90vw;
    max-width: none;
  }
}