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

body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 20vh 24px 12vh;
}

header {
  margin-bottom: 3rem;
}

h1 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}

.handle {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

.about {
  margin-bottom: 3rem;
  line-height: 1.7;
}

.about p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #aaa;
}

h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 1rem;
}

.now ul {
  list-style: none;
  margin-bottom: 3rem;
}

.now li {
  font-size: 0.9rem;
  color: #999;
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.now li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #444;
}

.link-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 3rem;
}

.link-list a {
  font-size: 0.9rem;
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

.link-list a:hover {
  color: #fff;
}

a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

footer {
  margin-top: 4rem;
}

.contact {
  font-size: 0.8rem;
  color: #444;
}

@media (max-width: 480px) {
  main {
    padding: 15vh 20px 10vh;
  }

  h1 {
    font-size: 1.8rem;
  }
}
