* {
    box-sizing: border-box;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;

}

.canvas {
    image-rendering: pixelated;
    position: absolute;
    width: 100vw;
    bottom: 0;
}

#titleText {
    color: white;
    text-align: center;
    font-size: calc(max(2.5vw,min(7vw,4em)));
    transition: opacity 5s;
    pointer-events: none;
    user-select: none;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 100;
    letter-spacing: .5em;
    animation: stretch 7s infinite alternate ease-in-out;
}

@keyframes stretch {
    from{letter-spacing: .5em;}
    to{letter-spacing: .62em;}
}

#bg {
    position: absolute;
    z-index: -1;
    background: linear-gradient(#283119, #634747);
    filter: hue-rotate(120deg);
    transition: filter 2s;
    height: 100vh;
    width: 100vw;
}