* {
  box-sizing: border-box; }

body {
  --text-color: #0c0c0c;
  --normal-width: 42rem;
  background: #fff;
  line-height: 1.5;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  color: var(--text-color);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; }

a {
  border-bottom: 3px solid var(--text-color);
  color: inherit;
  text-decoration: none; }
  a:hover {
    border-top: 3px solid var(--text-color);
    background-color: var(--text-color);
    color: white; }

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: var(--normal-width);
  max-width: 100%;
  margin: 0 auto;
  --padding: 5px;
  padding: var(--padding) 0;
  white-space: nowrap; }
  nav a {
    border: none; }
    nav a:hover {
      background-color: initial;
      color: initial;
      border: initial; }
  nav .brand-link {
    display: flex;
    height: calc(50px - var(--padding) * 2);
    margin-right: auto;
    align-items: center; }
    nav .brand-link img {
      height: 100%; }
    nav .brand-link h1 {
      display: inline;
      margin-left: .25em; }
  nav .nav-links {
    display: flex;
    flex-wrap: wrap; }
    nav .nav-links a {
      margin-left: 1.5em; }

section,
footer {
  width: var(--normal-width);
  padding: .5em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }

section.full-width {
  width: 100%; }

#footer-seperator {
  flex-basis: 0;
  flex-grow: 1; }

footer {
  opacity: .75;
  text-align: center; }

.canvas-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  user-select: none; }
  .canvas-wrapper:before {
    content: '';
    display: block;
    padding-top: 75%; }

#unityContainer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden; }
  #unityContainer canvas {
    width: 100%;
    height: 100%; }
