* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 100vw;
}

.container {
  pointer-events: none;
  font-family: "Pixelify Sans", sans-serif;
  background-color: black;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.gropt-title {
  color: #ffc300;
  position: fixed;
  text-shadow: #ffc300 0 0.1em 50px; 
  font-size: 3vw;
}

canvas {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .gropt-title {
    font-size: 5vw;
  }
}

@media (min-width: 768px) and (max-width: 1366px){
  .gropt-title {
    font-size: 4vw;
  }
}
