@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@font-face {
  font-family: 'FuenteTexto';
  src: url('fuentes/Modern No.20 Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.contenido-bienvenida img {
  width: 180px;    /* Ajusta el tamaño como prefieras */
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.pantalla-bienvenida {
  background-image: url('imagenes/fondo-floral.jpg'); /* Cambia a tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenido-bienvenida {
  font-family: 'FuenteTexto', serif; 
  text-align: center;
  color: #000;
  padding: 40px;
  font-style: italic;
  font-weight: normal !important;
  text-shadow: none !important;
}

.contenido-bienvenida h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.botones {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Botón estilo confirmación */
.confirm-button {
  display: inline-block;
  background-color: #fff8b0;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.confirm-button:hover {
  background-color: #f9e779;
}
