* {
  margin:0;
  padding:0;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

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

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Sans', sans-serif;
  color: #fffb00;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-top {
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.84;
}

.title-bottom {
  font-size: 7.4rem;
  font-weight: 400;
  line-height: 0.84;
}

.footer {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.8rem;
  color: #e7a52a;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

  .title-bottom {
    font-size: 16vw;
  }

  .footer {
    font-size: 1rem;
  }
}