html,
body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: "Courier New", monospace;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  overscroll-behavior: none;
  touch-action: none;
}

canvas {
  padding: 1.75rem;
  flex-shrink: 0;
  display: block;
  image-rendering: pixelated;
  width: 100%;
  height: 80vh;
  margin-top: 0vh;
  margin-bottom: 20vh;
  z-index: 0;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer {
  position: fixed;
  top: 87vh;
  width: 100%;
  padding: 1rem 0;
}

footer .socials {
  list-style: none;
  margin: 0 0 1.5625rem 0;
  padding: 0;
}
footer .socials > li {
  display: inline-block;
  vertical-align: middle;
}
footer .socials > li > a {
  display: inline-block;
  font-size: 0.75rem;
  opacity: 1;
  vertical-align: middle;
}
footer .socials > li > a:hover,
footer .socials > li > a:focus {
  opacity: 0.8;
}
footer .socials > li > a .fa-inverse {
  color: #000;
}
footer .copyright {
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.3333333333;
}
footer .copyright p {
  color: #ccc;
  margin: 0;
}
footer .copyright p a {
  color: #ccc;
}
footer .copyright p a:hover,
footer .copyright p a:focus {
  color: #fff;
}

::selection {
  background: transparent;
}
