@import url("https://fonts.googleapis.com/css?family=Overpass");
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  background-color: black;
}

#canvas {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  font-size: 20px;
  font-family: 'Overpass', sans-serif;
  color: #8D8AB5;
  padding: 20px;
  margin: 0;
  text-transform: uppercase;
}

@media (max-height: 580px) {
  h1 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 12px;
  }
}
