* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background: black;
}

canvas{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#window-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background: #222435;
  padding: 10vh 20px;
}

h1, h2 {
  color: #eb1c56;
  text-align: center;
  font-family: 'Orbitron', Monaco;
  margin: 25px 0;
}