<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#sectionLoad {
    display: none;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index:10000;
}
#sectionLoad.active {
    display: block;
}
#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#loader div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: yellow;
    animation: loader 1.5s infinite;
}
#loader .load1 {
    animation-delay: -0.5s;
}
#loader .load3 {
    animation-delay: -0.25s;
}

@keyframes loader {
    0%, 70%, 100% { transform: scale(0); }
    35% { transform: scale(1); }
}</pre></body></html>