@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("files/fonts/oswald/Oswald-Bold-Latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  color-scheme: light;
  --background: #ffffff;
  --nav-background: #222222;
  --nav-active: #080808;
  --nav-text: #d7dce0;
  --text: #252525;
  --muted: #5d6670;
  --link: #286090;
  --link-hover: #153f66;
  --focus: #f0b429;
  --site-width: 73.125rem;
  --content-width: 48.75rem;
}

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

html {
  background: var(--background);
  font-size: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

a {
  color: var(--link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a:hover {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.18rem;
}

.site-nav {
  border-bottom: 1px solid var(--nav-active);
  background: var(--nav-background);
}

.site-nav__inner {
  width: min(100%, var(--site-width));
  margin: 0 auto;
  padding: 0 1rem;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--nav-text);
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: var(--nav-active);
  color: #ffffff;
}

.site-nav__link:focus-visible {
  position: relative;
  z-index: 1;
  outline-color: #ffffff;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
}

.content-column {
  width: 100%;
  max-width: var(--content-width);
}

.page-main {
  padding: 2rem 0 3rem;
}

.identity {
  margin-bottom: 1.5rem;
}

.identity__name {
  margin: 0;
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.identity__contact {
  margin: 0.35rem 0 0;
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 1.75rem;
}

.intro p {
  margin: 0 0 1rem;
}

.disclaimer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 85%;
  font-style: italic;
}

.content-section + .content-section {
  margin-top: 2.5rem;
}

.page-title,
h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
}

.item-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.item-list > li {
  margin-bottom: 1rem;
}

.item-list > li:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 1rem 1rem;
}

.theme-credit {
  color: #7d8790;
  font-size: 0.75rem;
  text-decoration: none;
}

.theme-credit:hover {
  color: #4d555c;
}

@media (max-width: 35rem) {
  .site-nav__inner {
    padding: 0;
  }

  .site-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav__link {
    justify-content: center;
    padding: 0.7rem 0.5rem;
    text-align: center;
  }

  .page-main {
    padding-top: 1.5rem;
  }
}

@media print {
  .site-nav,
  .site-footer {
    display: none;
  }

  .site-shell,
  .content-column {
    width: 100%;
    max-width: none;
  }

  .page-main {
    padding: 0;
  }

  a {
    color: inherit;
  }
}
