html, body {
    padding: 0;
    margin: 0;
}
#top {
    display: block;
    height: 0;
}
#loading {
    font-family: Inter, Arial, sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #072524;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;;
    color: #ffffff70;
    z-index: 1000;
    opacity: 1;
    top: 0;
    transition: opacity 1s ease; 
    .logo {
        max-width: 200px;
        margin-left: -25px;
    }
}

#loading.fade-out {
    opacity: 0;
}

