@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/vt323/v18/pxiKyp0ihIEF2isfFJU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    display: flex;
    background-color: black;
    color: white
}

p {
    margin: 0;
}

#game-field {
    /* width: calc(32px * 10);
    height: calc(32px * 18); */
    background-color: gray;
    border-collapse: collapse;
    border: solid 3px transparent;
}

.game-row {
    /* height: 2em; */
    height: 32px;
}

.cell {
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    padding: 0;
}

.cell-block {
	border: solid 3px black;
}

#game-info {
    position: relative;
    width: 50%;
    height: calc(32px * 18 + 3px);
    font: 3em "VT323", sans-serif;
    margin-left: 16px;
}

#game-end-title {
    display: none;
    font-size: 3em;
    text-align: center;
}

#controls {
    position: absolute;
    bottom: 0;
    font-size: .8em;
}

#controls > table {
    white-space: pre;
}

#controls > table td + td {
    border-left: solid 32px transparent;
}
