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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
    font-family: 'Courier New', monospace;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

h1 {
    font-family: "degular-mono", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2rem;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

h1 .extension {
    font-family: "swear-display", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 3.2rem;
    margin-left: -6px;
    letter-spacing: -0.05em;
}

p {
    font-family: "swear-display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.65rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 4px 0 0 0;
}