* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-family: system-ui, sans-serif;
  font-size: 24px;
  color-scheme: light dark;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #fff;
  font-family: 'TASA Orbiter', sans-serif;
  line-height: 1.55;
}


main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: left;
  padding: 4rem 2rem;
}

h1 + p { margin-top: 1.5rem; }

p + p { margin-top: 1rem; }

section { max-width: 740px; }

#name {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
}

a:hover { text-decoration: underline; }

a:focus-visible {
  outline: 2px dashed #8db3ff;
  outline-offset: 2px;
}

strong { font-weight: 700; font-style: italic; }

.social-row {
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-row img {
  display: block;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.social-row img[alt="SoundCloud"] { width: 56px; }

.social-row a:hover img { opacity: 0.65; }


#bg-canvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* fallback if webgl or motion is disabled */
.no-bg #bg-canvas{ display:none; }

