body {
    background: #020202;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

canvas {
    display: block
}

h1 {
    background: linear-gradient(to right,
    cyan,
    magenta,
    green);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 5em;
    font-weight: 900;
    -webkit-user-select: none;
    user-select: none;
}
h2 {
    background: linear-gradient(122deg,
    cyan,
    magenta);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Oswald', sans-serif;

    position: fixed;
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
}

span {
    display: inline-block;
    overflow: hidden;
    animation: 0.03s swift-up ease-in-out forwards;
}

i {
    font-style: normal;
    position: relative;
    top: var(--headingSize);
    animation: 0.05s swift-up ease-in-out forwards;
}

@keyframes swift-up {
    to {
        top: 0;
    }
}

.container {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.5rem;
    height: 50dvh;
    width: 50dvw;
    display: grid;
    color: #fff;
    place-items: center;
    position: fixed;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
}