#preloader{
    background-color: #9E897A;
    background: #9E897A url(1482.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

#loaded{
    background-color: #9E897A;
    background: #9E897A url(1482.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    opacity: 1;
    animation: loadingOpacity 0.3s ease forwards;
}

@keyframes loadingOpacity{

    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}