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

@font-face {
  font-family: 'DejaVuSansMono';
  src: url('DejaVuSansMono.eot');
  src: url('DejaVuSansMono.eot?#iefix') format('embedded-opentype'),
       url('DejaVuSansMono.woff2') format('woff2'),
       url('DejaVuSansMono.woff') format('woff'),
       url('DejaVuSansMono.otf') format('opentype'),
       url('DejaVuSansMono.ttf') format('truetype'),
       url('DejaVuSansMono.svg#svgFontName') format('svg');
}

html {
  height: 100%;
}

body {
  font-family: 'DejaVuSansMono', 'Courier New', monospace;
  background: #f8f8f6;
  color: #1c1c1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

main {
  width: 100%;
  max-width: 600px;
}

/* Header */

h1 {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.015em;
  margin-bottom: 0.45rem;
}

.role {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 2.75rem;
}

/* Bio */

.bio {
  margin-bottom: 2.5rem;
}

.bio p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
}

.bio p + p {
  margin-top: 1rem;
}

/* Now */

.now {
  margin-bottom: 2.75rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.now:empty,
.now p:empty {
  display: none;
}

.label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5a8a3b;
  flex-shrink: 0;
}

.now p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #444;
}

/* Links */

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.5rem;
  font-size: 0.9rem;
}

.links a {
  color: #777;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.12s ease;
}

.links a + a::before {
  content: '·';
  color: #ccc;
  margin: 0 0.55rem;
}

/* Bio inline links */

.bio a {
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.bio a:hover {
  color: #0052ff;
  border-color: #0052ff;
}

/* Mobile */

@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding: 3.5rem 1.75rem;
  }

  .links {
    justify-content: center;
    column-gap: 1.2rem;
  }

  .links a + a::before {
    content: none;
    margin: 0;
  }

}
