/* Go
 * Licence: notarticulated.net/font/LICENCE-Go.txt
 */
@font-face {
  font-family: "Go";
  font-style: normal;
  font-weight: 400;
  src: url("/font/Go-Regular.ttf");
}

@font-face {
  font-family: "Go";
  font-style: normal;
  font-weight: 800;
  src: url("/font/Go-Bold.ttf");
}

@font-face {
  font-family: "Go Mono";
  font-style: normal;
  font-weight: 400;
  src: url("/font/Go-Mono.ttf");
}

/* belly.. */

* {
  --dark-colour: #1a1c2c;
  --bright-colour: #f4f4f4;
  --highlight-1: #dc273e;
  --highlight-2: #6577df;
  --p8-dark: #222222;
  --tic-dark: #1a1c2c;
}

body {
  color: var(--dark-colour);
  background: var(--bright-colour);

  max-width: 1200px;
  margin: 0 auto;

  font-size: 18pt;
  font-family: "Go", sans-serif;
}

h2 {
  color: var(--highlight-1);
}
h3 {
  color: var(--highlight-2);
}

a:link {
  color: var(--highlight-1);
}

img.pixel {
  image-rendering: crisp-edges;
}

body > p {
  margin-left: 1em;
  margin-right: 1em;
}

a.big-button {
  display: block;
  margin: 20px 0 20px 40px;
  max-width: 400px;
  padding: 8px 8px 8px 1em;
  font-size: 24pt;
  color: var(--bright-colour);
  background: #dc273e;
  text-decoration: none;
}

a.big-button:hover {
  background: #fc475e;
}

footer {
  height: 200px;
}

div#list-of-games {
  display: flex;
  flex-direction: column-reverse;
}

div.game-entry {
  display: flex;
  flex-direction: row;
  padding: 10px;
}

@media (max-width: 800px) {
  div.game-entry {
    flex-direction: column;
  }
}

div.game-info {
  padding: 10px;
  flow-direction: column;
}

div.game-info > div {
}
div.game-image {
  flex: 0 0 384px;
}
div.game-image > img {
  max-width: 384px;
  width: 100%;
}
div.game-info > h3 {
  font-size: 32pt;
  margin: 0;
}
div.game-info > dl {
  font-family: "Go Mono", monospace;
  font-size: 16pt;
}
div.game-info > dl > dt {
  color: var(--highlight-1);
}
