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

/* base */
html {
  background-color: #1b1a1a;
}

body {
  font-family: "STIX Two Text", Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
  color: #ededed;
  background-color: #1b1a1a;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 2.5rem;
}

p {
  margin-bottom: 1rem;
  color: #a1a1a1;
}

a {
  color: #ededed;
  text-decoration: underline;
  text-decoration-color: #767676;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-color: #ededed;
}

/* index — experience list */
.experience-entry {
  margin-bottom: 1.5rem;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.company-title {
  font-weight: 600;
}

.date-range {
  font-size: 0.875rem;
  color: #767676;
}

.role {
  font-style: italic;
}

/* notes — back link */
.back {
  display: block;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  color: #767676;
  text-decoration-color: #444;
}

.back:hover {
  color: #a1a1a1;
  text-decoration-color: #a1a1a1;
}
