html, body{
  background: black;
  color: white;
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: 'Roboto Slab', 'Trebuchet MS', serif;
}
#wrapper{
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}
header{
  word-break: break-all;
  width: 3em;
  overflow: hidden;
  user-select: none;
  font-size: 1.5em;
}
#header-content{
  margin: auto;
  width: 1em;
  text-align: center;
}
a{
  color: white;
  margin-top: 1em;
  display: block;
}
#game-name{
  width: 0.2em;
  text-transform: lowercase;
  margin-bottom: 1em;
}
#game{
  flex: 15;
  overflow: hidden;
  margin: 0;
  border: 0;
  background-color: black;
}
@media screen and (max-width: 640px) {
  header{
    font-size: 1em;
  }
}
@media screen and (max-height: 900px) {
  header{
    font-size: 1em;
  }
}
@media screen and (max-height: 600px) and (min-aspect-ratio: 1/1) {
  header{
    font-size: 0.6em;
  }
}
@media (max-aspect-ratio: 1/1) {
  #wrapper{
    flex-direction: column;
  }
  header{
    word-break: initial;
    height: 2em;
    width: initial;
  }
  #header-content{
    margin: 0.25em;
    text-align: left;
    width: initial;
  }
  #game-name{
    width: initial;
    margin-bottom: 0;
    display: inline-block;
  }
  a{
    display: inline-block;
    margin-left: 0.25em;
    margin-top: 0;
  }

}
