body,
html {
    background-color: #ececec;
    font-family: "EB Garamond", serif;
    margin: 0;
}

#header>* {
    color: #eee;
    font-family: "EB Garamond", serif;
    background-color: transparent;
    text-shadow:
        0 0 5px #4E5120,
        /* Sombra más cercana */
        0 0 10px #4E5120,
        /* Sombra más expandida */
        0 0 20px #4E5120,
        /* Sombra difusa */
        0 0 40px #4E5120,
        /* Sombra de mayor difuminado */
        0 0 60px #4E5120;
    /* Sombra más grande */
}

#header>div:last-child {
    font-size: 90px;
    color: #eee;
    text-shadow:
        0 0 5px #4E5120,
        /* Sombra más cercana */
        0 0 10px #4E5120,
        /* Sombra más expandida */
        0 0 20px #4E5120,
        /* Sombra difusa */
        0 0 40px #4E5120,
        /* Sombra de mayor difuminado */
        0 0 60px #4E5120;
    /* Sombra más grande */
}

div {
    background-color: #ececec;
}



#header {
    background-image: url('header6.jpg');
    background-size: cover;
    /* Asegura que la imagen cubra completamente el div */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    background-position: center;
    /* Centra la imagen en el div */

    height: 70vh;
    width: 100%;
    /* 100% del ancho de la ventana */
}

#seccion-1 p:first-child {
    font-size: 50px;
}


#seccion-1 p:last-child {
    font-size: 25px;
}

#fecha>* {
    margin-right: 5px;
    margin-left: 5px;
    font-family: "Great Vibes", cursive !important;
    font-size: 40px;
}

#contador-dias>div {
    border: 2px solid #4E5120;
    margin-right: 3px;
    margin-left: 3px;
    font-family: "EB Garamond", cursive !important;
}

#btn-fecha,
#btn-ubicacion {
    background-color: #4E5120;
    border: 1px solid #4E5120;
    width: 150px;
}


#btn-asistencia {
    background-color: #4E5120;
    border: 1px solid #4E5120;
    width: 200px;
}

#img-anillos,
#img-vestimenta,
#img-asistencia {
    width: 70px;
    margin-top: 70px;
}


#img-regalo {
    width: 70px;
}

#card-regalos {
    border: 1px solid #686107;
    padding: 10px;
    padding-top: 35px;
    height: 100%x;
    width: 90%;
    box-shadow:
        0 0 5px #4E5120,
        /* Sombra más cercana */
        0 0 10px #4E5120;
    /* Sombra más expandida */
}

#confirma-asistencia {
    padding: 0px;
}

#enlace-mesa {
    text-decoration: none;
    color: #4E5120;
    font-weight: bold;
}

#enlace-ubicacion,
#enlace-asistencia {
    text-decoration: none;
    color: white;
}

#final img {
    width: 100%;
    margin-bottom: 20px;
}


.cursiva {
    font-family: "Dancing Script", cursive !important;
}

.vibes {
    font-family: "Great Vibes", cursive !important;
}

.titulo {
    font-family: "Great Vibes", cursive !important;
    color: #4E5120;
    font-size: 25px;
}

.garamond {
    font-family: "EB Garamond", sans-serif;
    font-style: italic;
}

.roboto {
    font-family: "Roboto", sans-serif !important;
    font-weight: 300;

}


.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-30 {
    font-size: 30px;
}

.fs-35 {
    font-size: 35px;
}

.fs-25 {
    font-size: 25px;
}

.amarillo-1 {
    color: #686107;
}

.fs-18 {
    font-size: 18px;
}

.fs-16 {
    font-size: 16px;
}

h1 {
    font-size: 25px;
}

.olivo {
    color: #4E5120 !important;
}


/* Estilo general para los divs animados */
.animated-div {
    opacity: 0;
    /* Empieza invisible */
    transition: all 0.8s ease-out;
    /* Duración y tipo de transición */
}

/* Efecto de barrido de arriba hacia abajo */
.wipe-down {
    background: linear-gradient(to bottom, transparent 50%);
    background-size: 100% 200%;
    background-position: top;
}

.wipe-down.show {
    opacity: 1;
    background-position: bottom;
}

/* Efecto de zoom */
.zoom {
    transform: scale(0.3);
    /* Comienza pequeño */
}

.zoom.show {
    opacity: 1;
    transform: scale(1);
    /* Aumenta hasta su tamaño original */
}