body {
  background-color: black;
  color: white;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 0;
  height: 100vh;
  margin: 0;
  min-height: 640px;
  min-width: 320px;
  width: 100vw;
}

div {
  align-items: center;
  border: 1px solid white;
  display: flex;
  font-weight: bold;
  justify-content: center;
  text-align: center;
}

div.banned {
  color: grey;
  font-weight: normal;
  text-decoration: line-through;
}

div.jacket, div.result, div.roll {
  flex-direction: column;
  grid-row: span 2;
}

div.jacket img {
  height: 100%;
  width: 100%;
}
