:root {
    color-scheme: dark;
}

canvas {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

body {
    margin: 0;
}

main {
    display: grid;
    grid-template-rows: 100vh;
    grid-template-areas: "centre";
}

/*

p {
    grid-area: centre;
    margin: auto;
    color: lightpink;
    font-family: monospace;
    font-size: xx-large;
}

p::after {
    animation-name: typing;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    white-space: pre;
    content: " ";
}

@keyframes typing {
    from {
        content: " ";
    }

    to {
        content: "_";
    }
}

*/