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

body {
    background-color: #222;
    font-family: "Input Sans Nar Reg", Menlo, Consolas, monospace;
    color: #fff;
}

a:link,
a:visited {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:active {
  color: #fff;
  text-decoration: underline;
}

.container {
    display: flex;
    height: 100dvh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

@media screen and (max-width: 800px) {
    .container {
        flex-direction: column-reverse;
        align-items: end;
    }
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: end;
}

canvas {
    width: 100%;
    height: 100%;
    max-width: 640px;
    max-height: 640px;
}