@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Silkscreen:wght@400;700&display=swap');

html::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

body {
    font-family: Arial;
    padding: 0;
    margin: 0;
    background:rgb(20, 20, 20);
}

canvas {
    z-index: -1;
    background: linear-gradient(
      to bottom,
      rgb(20, 20, 20) 0%,
      rgb(20, 20, 20) 100%
    );
}

.loadingscreen {
    width:100%;
    height:100%;  
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgb(20, 20, 20);
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
}

.loadingscreen span {
    position: relative;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 15em;
    z-index: 6;
    left: 2em;
    top: 350px;
    z-index: 100;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));
}

.discord-intergration {
    position: fixed;
    z-index: 4;
    left: 10px;
    top: 10px;
}

.copyright {
    position: fixed;
    color: #fff;
    font-family: Poppins;
    font-size: 15px;
    bottom: -10px;
    left: 10px;
    z-index: 10;
}
