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

body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #000;
  color: #acacac;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  font-size: 19px;
  line-height: 1.55;
  padding: clamp(0.75rem, 3vw, 2rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  width: min(100%, 46rem);
  margin-inline: auto;
  contain: content;
}

.visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}

.art {
  display: block;
  color: #565656;
  font-family: 'Cascadia Mono', Consolas, ui-monospace, monospace;
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0;
  white-space: pre;
  user-select: none;
}

.meta {
  flex: 0 1 auto;
}

.content {
  position: relative;
  padding-left: clamp(0.75rem, 1.2vw, 1rem);
  width: min(17rem, 38vw);
  min-width: 0;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #262626;
}

h1 {
  font-size: inherit;
  font-weight: normal;
  color: #d0d0d0;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 16px;
  font-weight: normal;
  color: #6f6f6f;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.bio {
  margin-bottom: 1.35rem;
}

.bio p {
  color: #989898;
}

nav ul {
  list-style: none;
}

nav li {
  margin-bottom: 0.35rem;
}

nav li:last-child {
  margin-bottom: 0;
}

nav li::before {
  content: '\25E6\0020';
  color: #747474;
}

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

a:hover {
  color: #fff;
}

a:focus-visible {
  color: #fff;
  outline: 1px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  body {
    font-size: 20px;
    padding: 0.875rem;
  }

  .shell {
    gap: 0.8rem;
  }

  .art {
    font-size: 5px;
    line-height: 1;
  }

  .content {
    padding-left: 0.75rem;
    width: min(11rem, 47vw);
  }

  h2 {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .shell {
    gap: 0.65rem;
  }

  .art {
    font-size: 4px;
  }

  .content {
    width: min(10.75rem, 49vw);
  }
}
