body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Press Start 2P", cursive;
  background-color: #000;
}

.center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.text-center {
  text-align: center;
  width: 100%;
}

h1 {
  display: inline-block;
  padding-right: 5px;
  border-right: 10px solid #fff;
  animation: blink 1s infinite;
}

@media screen and (max-width: 370px) {
  h1 {
    font-size: 5vw;
    border-right: 4px solid #fff;
  }
}
@keyframes blink {
  0%, 50% {
    border-right-color: transparent;
  }
  51%, 100% {
    border-right-color: #fff;
  }
}
canvas {
  background: #000;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */
