html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: monospace;
    overflow: none;
}

.letterContainer {
    position: absolute;
    top: 0;
    left: 50vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    font-size: calc(100vw / 25);
}

#letters {
    position: relative;
    left: 0px;
}

#wall {
    position: fixed;
    left: 0px;
    top: 0px;
    background: linear-gradient(to left, #f55, #f00, #a00, rgba(0, 0, 0, 0));
    width: 20vw;
    height: 100vh;
    opacity: 0.5;
}

#points {
    position: absolute;
    left: 50vw;
    top: 2rem;
    transform: translateX(-50%);
    font-size: 4rem;
}
