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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
}

body {
  margin: 0;
  background: #000;
  color: #666;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: inherit;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #888;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.content {
  width: 100%;
  max-width: 400px;
}

.header {
  margin-bottom: 4rem;
}

.name {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
  color: #fff;
}

.role {
  margin: 0.25rem 0 0;
  font-size: inherit;
  color: #555;
}

.section + .section {
  margin-top: 3.5rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: inherit;
  font-weight: 400;
  color: #fff;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.row__name {
  flex: 0 0 auto;
  color: #666;
  white-space: nowrap;
}

.row__line {
  flex: 1 1 auto;
  min-width: 0.75rem;
  height: 0;
  align-self: flex-end;
  border-bottom: 1px dotted #1a1a1a;
  margin-bottom: 0.2em;
}

.row__desc {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.row__role {
  color: #555;
  white-space: nowrap;
}

.section--past .list {
  gap: 1.1rem;
}

.row__date {
  font-size: 9px;
  line-height: 1;
  color: #333;
  font-style: italic;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  margin-bottom: 0.25em;
}

.fun-fact {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.fun-fact__stack {
  display: block;
  margin-top: 0.1rem;
}

.stack-word {
  color: #555;
}

.stack-hl {
  color: #fff;
}

@media (max-width: 480px) {
  .row {
    display: block;
  }

  .row + .row {
    margin-top: 0.25rem;
  }

  .row__line {
    display: none;
  }

  .row__desc {
    align-items: flex-start;
    text-align: left;
    margin-top: 0.15rem;
  }
}
