hhtml {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-image: url('../images/fondo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: Arial, sans-serif;
}

    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: inherit;
        background-size: cover;
        background-position: center center;
        filter: blur(0px); /* Ajusta el valor según el nivel de desenfoque deseado */
        z-index: -1; /* Asegura que esté detrás del contenido */
    }

.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

    .btn-primary:hover {
        background-color: #357ab7;
        border-color: #357ab7;
    }

