* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background-color: #ece9e3;
  background-image:
    linear-gradient(rgba(70, 62, 48, 0.016) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(70, 62, 48, 0.016) 0.5px, transparent 0.5px),
    radial-gradient(120% 90% at 50% 45%, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.018) 100%);
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-position: 0 0, 0 0, center;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.stage {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  background-image:
    linear-gradient(rgba(85, 76, 60, 0.009) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(85, 76, 60, 0.009) 0.5px, transparent 0.5px);
  background-size: 8px 8px;
}

#dot-canvas {
  width: min(88vw, 960px);
  max-height: 72vh;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  opacity: 0.9;
  filter: saturate(0.92) contrast(0.95) blur(0.55px);
  -webkit-mask-image: radial-gradient(ellipse 88% 84% at 50% 50%, #000 56%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 84% at 50% 50%, #000 56%, transparent 100%);
}

.headline {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: rgba(56, 49, 35, 0.74);
}

.site-name {
  margin: 0;
  font-size: clamp(0.86rem, 1.2vw, 1.02rem);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  font-weight: 300;
  color: rgba(56, 49, 35, 0.62);
}

.site-name a {
  color: inherit;
  text-decoration: none;
}

.site-name a:hover {
  text-decoration: underline;
}
