body {
  margin: 0;
  background: #fdf5e6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  position: relative;
}

/* full-screen canvas */
canvas {
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
}

.title {
  position: absolute;
  top: 2rem;
  left: 2rem;
  pointer-events: none;
  color: #333;
}

.title h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.title p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer {
  right: 2rem;
  bottom: 2rem;
  position: absolute;
}

.footer img {
  width: 2.5rem;
  transition: opacity 0.5s;
}

.footer img:hover {
  opacity: 0.5;
}

