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

body {
  background: #f1f1f1;
  color: #111;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  line-height: 1.7;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* header */

.name {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 11px;
  color: #555;
  margin-top: 0.15rem;
}

/* rules */

hr {
  border: none;
  border-top: 1px solid #111;
  margin: 4rem 0;
}

/* section titles */

.section-title {
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #555;
}

/* credits */

.credits {
  list-style: none;
}

.credits li {
  padding: 0.2rem 0;
}

/* studio photo */

.studio-photo {
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.studio-photo:hover {
  filter: grayscale(0%);
}

/* about */

.about-text {
  text-align: justify;
  max-width: 600px;
}

/* links */

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.showcase-link {
  font-weight: bold;
  text-decoration: underline;
}

/* bottom */

.bottom {
  display: flex;
  gap: 2rem;
  font-size: 11px;
}

/* mobile */

@media (max-width: 500px) {
  .container {
    padding: 2rem 1rem 3rem;
  }

  hr {
    margin: 3rem 0;
  }
}

/* grain overlay */

.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
}

.grain canvas {
  display: block;
  width: 100%;
  height: 100%;
}
