@font-face {
  font-family: 'Abril Fatface';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./lib/fonts/AbrilFatface-Regular.woff2') format('woff2');
}

*, *:before, *:after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Abril Fatface", cursive;
  cursor: crosshair;
}

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

.hero {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  left: 0;
  right: 0;
}
.hero h1 {
  font-size: 24px;
  line-height: normal;
  margin: 0;
  color: rgba(255, 235, 59, 0.8);
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1170px) {
  .hero h1 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero h1 {
    font-size: 100px;
  }
}

.note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  font-size: 12px;
}
