* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #050509;
    color: #c8f7ff;
    font-family: "Courier New", monospace;
}

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

#wrap {
    position: relative;
    line-height: 0;
}

#wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0.28) 3px,
        rgba(0, 0, 0, 0.28) 4px
    );
    mix-blend-mode: multiply;
}

canvas {
    width: min(96vw, 173.33vh, 1280px);
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    background: #101018;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
