* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

canvas {
  position: fixed;
  inset: 0;
}

#label {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  gap: 0.6rem;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: rgba(45, 30, 50, 0.78);
  letter-spacing: 0.05em;
}

p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  color: rgba(45, 30, 50, 0.38);
  letter-spacing: 0.12em;
}