body {
    margin: 0;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

#loading-bg {
    position: fixed;
    display: block;
    inset: 0;
    z-index: 9999;
}

.loading-logo {
    position: absolute;
    inset-block-start: 40%;
    inset-inline-start: 50%;
    transform: translateX(-50%);
}

.loading-bars {
    position: absolute;
    inset-block-start: 40%;
    inset-inline-start: 50%;
    transform: translate(-50%, 50px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 60px;
    height: 40px;
    z-index: 1;
}

.bar {
    width: 10px;
    height: 18px;
    background: #ffffff;
    border-radius: 2px;
    animation: wave 0.38s ease-in-out infinite;
    transform-origin: bottom;
    will-change: transform;
}

.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.065s; }
.bar3 { animation-delay: 0.13s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.8); }
}