* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f0ece8;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}
#title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
    line-height: 1.05;
}

#title span {
    display: block;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: 13vw;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.35);
    mix-blend-mode: overlay;
    text-transform: uppercase;
    user-select: none;
}
