body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'GG Sans', sans-serif;
}

#glcanvas {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
    width: 100%;
    height: 120lvh;
    pointer-events: none;
}

.logo {
    margin-top: 5rem;
    image-rendering: pixelated;
    width: 100%;
    max-width: 550px;
}

.hand {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 800px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vp {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;

    filter: drop-shadow(0px 1px 3px #00000050);
}

.outline {
    position: absolute;
    width: 100%;
    height: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: #000;
    -webkit-text-stroke: #000000 5px;
    justify-content: center;
    z-index: -1;
}

.gamer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    
    height: 300px;
}

.gamer > a {
    background-color: #00000088;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.gamer > a:hover {
    background-color: #000000dd;
}

.perspective {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    perspective: 1000px;
    z-index: -1;
}

.floaty {
    position: fixed;
}

#floaty1 {
    opacity: 0.8;
    width: 150px;
    top: 100px;
    z-index: -1;
    left: calc(100% - 400px);
    transform: translateY(0px) rotateX(9deg) rotateY(-10deg) rotateZ(9deg);
    filter: blur(1px);
}

#floaty2 {
    width: 300px;
    top: 100%;
    z-index: -1;
    left: 100px;
    transform: translateY(0px) rotateX(-9deg) rotateY(-10deg) rotateZ(9deg);
    filter: blur(0.75px);
}