#loading-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

#loading-logo {
    width: 300px;
    height: auto;
}

#content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {
    #loading-logo {
        width: 180px;
    }
}

@media (max-width: 480px) {
    #loading-logo {
        width: 150px;
    }
}