@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fdf6f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    overflow: hidden;
}

.sup{
    
    display: flex;
    width: 100%

}
.txt{
    width: 45%;
    
}
.bearboy{
    width: 20%;
    
}
.beargirl{
    width: 20%;
    align-items: center;
    align-self: center;
   
}

/* Pantalla de bienvenida */
.welcome-screen {
    position: absolute;
    top: 0;
    width: 120%;
    height: 120%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 1s ease-in-out;
    z-index: 2;
    overflow: hidden;
    background-image: url(img/OPEN.png);
    text-align: center;
    color: #33333300;
    background-size: contain; /* Mantiene la imagen completa */
    background-repeat: no-repeat;
    background-position: top center; /* La imagen se alinea arriba */
    background-color: white; /* Ajusta el color del fondo según tu diseño */
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;

}

/* Animación de estrellas */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/*boton diseño*/
.loader {
    width: 48px;
    height: 48px;
    display: block;
    margin: 20px auto;
    box-sizing: border-box;
    position: absolute;
    bottom: 15vh;
  }
  
  .loader::after {
    content: '';
    width: 48px;
    height: 48px;
    left: 0;
    bottom: 0;
    position: absolute;
    border-radius: 50% 50% 0;
    border: 15px solid red;
    transform: rotate(45deg) translate(0, 0);
    box-sizing: border-box;
    animation: animMarker 0.4s ease-in-out infinite alternate;
  }
  
  .loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 150%;
    width: 24px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    animation: animShadow 0.4s ease-in-out infinite alternate;
  }
  
  @keyframes animMarker {
    0% {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    100% {
      transform: rotate(45deg) translate(-5px, -5px);
    }
  }
  
  @keyframes animShadow {
    0% {
      transform: scale(0.5);
    }
  
    100% {
      transform: scale(1);
    }
  }
    /* buton diesño final*/  

@keyframes moveStars {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.stars-container::before {
    content: '⭐⭐⭐⭐⭐';
    font-size: 24px;
    color: silver;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: moveStars 5s linear infinite;
}

/* Signo de interrogación */
.question-mark {
    width: 38vh;
    height: 38VH;
    background-size: cover;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

.question-mark span {
    font-size: 80px;
    color: #79a7d3;
    font-weight: bold;
}

/* Botón */
.welcome-screen button {
    width: 45vh;
    height: 45vh;
    background: #ffffff00;
    color: rgba(255, 255, 255, 0);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
    border-radius: 50%;
}


/* Invitación oculta al inicio */
.invitation-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Contenedor de la invitación */
.invitation {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

/* Responsivo */
@media (max-width: 500px) {
    .invitation {
        max-width: 100%;
        
    }
    button {
        width: 100%;
    }
}
body {
    font-family: Arial, sans-serif;
    background-image: url(img/invitacion.png);
    text-align: center;
    color: #333;
    background-size: contain; /* Mantiene la imagen completa */
    background-repeat: no-repeat;
    background-position: top center; /* La imagen se alinea arriba */
    background-color: white; /* Ajusta el color del fondo según tu diseño */
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

        .container {
            background-color: #ffffff00;
            margin: 50px auto;
            padding: 20px;
            border-radius: 15px;
            max-width: 600px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 36px;
            color: #ff6f61;
        }
        h2 {
            font-size: 24px;
            color: #000000;
        }
        p {
            font-size: 18px;
            margin: 10px 0;
        }
        .date {
            font-size: 20px;
            color: #a77b7b;
        }
        .team {
            margin: 20px 0;
            display: inline-block;
            width: 45%;
            background-color: #f0f0f0;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }
        .team:nth-child(2) {
            background-color: #e8e0f7;
        }
        .team h3 {
            margin: 5px 0;
        }
        .location {
            margin-top: 30px;
            font-size: 18px;
        }
        
        .question-mark{
            width: 30vh;
            height: 30vh;
            position:absolute;
            top:25%;

        }