html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#loading {
  display: none;
}

body {
  overflow: hidden;
  touch-action: none;
  background: #252525;
}

body.loading {
  background-color: #c5bcac;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;

}

h1 {
  background-image: url("./son.png");
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #252525;
  font-size: 20px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding-top: 45px;
  padding-left: 80px;
  letter-spacing: 3px;
  animation: pulse 2s forwards;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }


  50% {
    opacity: 1;
  }


  100% {
    opacity: 1;
  }


}