html {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'MEK-Mono';
    src: url('MEK-Mono.woff') format('woff');
}
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color:#000;
    color: limegreen;
    font-size: 8rem;
    font-family: 'MEK-Mono', sans-serif;
    font-weight: bold; /* Set font-weight to bold */
    text-align: center; /* Center the text within the body */

}
h1 {
    margin: 0; /* Reset margin for h1 */
}


canvas {
    display: block;
    margin: auto; /* Center the canvas horizontally */
}

@media screen and (orientation: portrait) {
    canvas {
        max-width: 100%; /* Allow canvas to take full width in portrait mode */
        height: auto;
    }

}