@import "/fonts/stylesheet.css";

html,
body {
  background-color: black;
  font-family: "Bad Russian", Helvetica, Arial, sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.canvas {
  width: 100%;
  height: 100vh;
  background-color: black;
}

.message {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 120px;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

@media(max-width: 640px) {
  .message {
    font-size: 40px;
    transform: translate(-50%, -120%);
  }
}
