#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
    .mostrarLoader{
        display: flex;
    }
    .ocultarLoader{
        display: none;
    }
    #loader-img{
        margin-top: -200px;
        width: 180px;
        height: auto;
        animation: scaleLoader 1.2s ease-in infinite;

    }

        @keyframes scaleLoader {
            0% {
                transform: scale(0.1);
            }
            20% {
                transform: scale(1); 
            }
            80% {
                transform: scale(1);
            }
            100% {
                transform: scale(0.1);
            }
        }
    #loader p{
        margin-top: -200px;
        padding-top: 12rem;
        color: white;
        font-size: 32px;

    }