canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, black 0%, black 33.33%, black 33.33%, rgba(13, 0, 26, 1) 100%);
    background-size: 100% 150%;
    background-position: 0 50%;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    z-index: 1;
}

.bottom-text {
    position: absolute;
    top: calc(50% + 2.25em);
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1em;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-style: italic;
    z-index: 1;
}

.center-text span,
.bottom-text span {
    display: inline-block;
    width: 1ch;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1em;
}

.flip-text {
    transform: scaleX(-1);
}