body {
    overflow: hidden;
    /* Evita el scroll mientras la pantalla de bienvenida está activa */
    background-color: e5e5e5;
    color: #2e2e2e;
    background-image: url(../img/fondo.jpg);
    background-repeat: repeat;
    background-color: lightblue;
    font-family: "Quicksand", sans-serif;

}

div {
    border: darkgray;

}

.nombres {
    font-family: 'Great Vibes', cursive;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.7),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 24px rgba(255, 255, 255, 0.5);

}
.times{
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
}
/* Pantalla de bienvenida */
#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/fondo-sello.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Imagen central */
#welcome-image {
    display: block;
    justify-items: center;
    text-align: center;
    width: 60%;
    max-width: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;

}

#welcome-image h1 {
    font-size: 60px;
}

#welcome-image:hover {
    transform: scale(1.05);
}

/* Ocultar la pantalla con animación */
.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

#banner {
    color: #070964;
    box-shadow: darkgray;
    justify-content: flex-end;
    background-image: url(../img/banner.jpg);
    /* background: linear-gradient(
                rgba(70, 101, 238, 0.3), 
                rgba(45, 44, 48, 0.3)
            ), url('../img/banner.jpg');*/
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

#banner h1 {
    font-size: 60px;
}

.Titulos {
    font-family: 'Great Vibes', cursive;
    margin-top: 20px;
    font-size: 48px;
    color: #070964;

}

#cuando {
    background: url(../img/flores_header.png);
    background-repeat: no-repeat;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 200px;
}

#cuando p {
    color: #0f1abe;
    font-weight: 500;
}

#agradecimiento {
    /*background-image: url(../img/dondo-agradecimiento.jpg);*/
    background-size: cover;
    background-position: center;
    /*color: darkgray;*/
}

#agradecimiento img {
    border-radius: 50%;
}

p .icon {
    color: blue;
    font-size: 50px !important;

}

/*Galeria de fotos*/
.gallery-container {
    overflow: hidden;
    white-space: nowrap;
    height: 120px;
    position: relative;
}

.gallery-scroll {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
}

.gallery-scroll img {
    height: 100px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.modal-img {
    width: 100%;
}