:root {
  --bg-color: #242426;
  --line-color: #363638;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: none;
}

html {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-color);
  font-family: 'Jost', sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

#bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  touch-action: none;
  width: 100vw;
  height: 100dvh;
}

#title {
  position: fixed;
  z-index: 3;
  bottom: 1rem;
  right: 2rem;
  left: auto;
  max-width: 60vw;
  text-align: right;
  white-space: normal;
  word-break: break-word;
  overflow: visible;
  font-size: clamp(1rem, 8vw, 8rem);
  line-height: 1.2;
  text-decoration: none;
  color: #ff6165;
  touch-action: auto;
}

@media (max-width: 48rem) {
  #title {
    left: 0;
    right: 0;
    transform: none;
    max-width: 100vw;
    text-align: center;
  }
}
