@import"https://fonts.googleapis.com/css2?family=Michroma&display=swap";@import"https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap";html,body,header,main,footer,section,div,nav,ul,ol,li,a,p,span,b,i,em,input,label,button,textarea,blockquote,br,dd,del,table,ins,form,iframe,canvas,code,dt,img,pre,sub,sup,video,audio,aside,article,td,th,tfoot,tr,h1,h5,h2,h3,h4,h6{margin:0;padding:0;box-sizing:border-box}a{text-decoration:none}ul,li{list-style-type:none}button{outline:none}html,body{width:100%;height:100%}html{scroll-behavior:smooth}body,a,input,button{font-family:Inconsolata,monospace;font-size:15px}h1,h2,h3{font-family:Michroma,sans-serif}h1{-webkit-text-stroke-width:1px;-webkit-text-stroke-color:#262626;font-size:72px;font-style:normal;font-weight:400;line-height:normal;letter-spacing:.768px;text-transform:uppercase;background:linear-gradient(180deg,#fff200 50%,#999100 81.37%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}@media (max-width: 850px){h1{font-size:50px}}@media (max-width: 650px){h1{font-size:40px}}h2{color:#000;font-size:42px;font-style:normal;font-weight:400;line-height:normal;text-transform:uppercase;text-shadow:2px 4px #fff200;text-align:center;margin-bottom:36px}@media (max-width: 650px){h2{font-size:27px}}h3{color:#000;font-size:36px;font-style:normal;font-weight:400;line-height:normal;text-transform:uppercase;text-shadow:2px 4px #fff200;text-align:center;margin-bottom:36px}h4{color:#000;font-size:25px;font-style:normal;font-weight:400;line-height:normal;text-transform:uppercase;text-shadow:2px 4px #fff200;text-align:center;margin-bottom:36px;letter-spacing:.665px;font-family:Michroma,sans-serif}
#preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1b1b1d;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader {
            width: 48px;
            height: 48px;
            border: 3px solid #f9e000;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }