@font-face {
    font-family: "CustomFont";
    src: url('./Proggy.ttf');
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    display: flex;
    color: white;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-around;
    font-family: 'CustomFont', monospace;
    text-align: center;
    background-image: url('./imgs/bg.png');
    background-repeat: no-repeat;
    background-size: contain;
}

img {
    width: 30px;
    margin: 0 10px;
}

canvas {
    display: none;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

h1 {
    margin: 0;
}

@media (pointer: fine) {
    canvas {
        margin: 0 auto;
        width: 800px;
        height: 540px;
        display: block;
        border: 8px ridge #666;
    }
    footer, img, header {
        user-select: none;
    }
    .only {
        display: none;
    }
}