#loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    z-index: 999999999999999999;
}
#loading.active{
    display: flex !important;
}
#loading img{
    max-width: 400px;
}

@media (max-width: 776px){
    #loading img{
        max-width: 100%;
    }
}