html {
    height: auto;
    min-height: 100%;
}

body {
    min-height: 100vh;
    background-image: url('imagenes/fondo-movil.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.min-vh-100 {
    min-height: 100vh;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

.mt-auto {
    margin-top: auto;
}


.bg-fondo {
    background-image: url(../imagenes/fondo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.font-title, p, li, span {
    font-family: 'Montserrat', sans-serif;
}

.img-hover {
    overflow: hidden;
    transition: width 4s, height 4s;
}


footer a {
    color: white;
}

footer a:hover {
    color: #ad68ff
}


.img-hover:hover img {
    -ms-transform: scale(0.1); /* IE 9 */
    -webkit-transform: scale(0.1); /* Safari 3-8 */
    filter: grayscale(.8);
    transform: scale(1.1);

}

.zoom {
    transition: 0.65s;
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
}

.cuenta-atras {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'alphabet-soup', cursive;
    color: #fff;
    font-weight: bold;
}

.tam-num {
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
}

.cuenta-atras .fecha {
    font-size: 80px;
    margin-top: -8px;
}

@media screen and (min-width: 768px) {
    .tam-num {
        font-size: 100px;
    }

    .cuenta-atras .fecha {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .tam-num {
        font-size: 48px;
    }

    .cuenta-atras .fecha {
        font-size: 24px;
    }

    .countdown {
        gap: 16px;
    }

    h2.alphabet-soup {
        font-size: 24px !important;
    }
}

.container {
    max-width: 920px;
}


body {
    background-image: url('../imagenes/fondo-movil.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(3px);
}

@media (max-width: 600px) {
    body {
        background-image: none;
		background-image: url('../imagenes/fondo-movil-2.png');
    }
}

/* Página de error 404 con fondo */

.error404-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.error404-section {
    background-image: url('imagenes/fondo-movil.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.error404-box {
    background-color: rgba(255, 255, 255, 0.85); 
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 500px;
    color: #ad68ff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error404-code {
    font-size: 6rem;
    margin: 0;
    font-weight: bold;
}

.error404-title {
    font-size: 2rem;
    margin-top: 10px;
}

.error404-text {
    font-size: 1.1rem;
    margin: 20px 0 40px;
}

.error404-button {
    background-color: #ad68ff;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.error404-button:hover {
    background-color: #934ad8;
}

/* Responsive */
@media (max-width: 768px) {
    .error404-code {
        font-size: 4rem;
    }

    .error404-title {
        font-size: 1.5rem;
    }
}

