html, body {
  box-sizing: border-box; }

html {
  height: 100%;
  color-scheme: dark; }

body {
  min-height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #0f1219;
  color: #f5f0d6;
  font: 300 1.3em "Source Sans Pro", sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 20px; }
  @media (max-width: 40rem) {
    body {
      font-size: 1.2em; } }
.outer-container {
  max-width: 1200px;
  margin: 0 auto; }

.inner-container {
  padding-top: 20px;
  padding-bottom: 50px; }
  @media (max-width: 40rem) {
    .inner-container {
      padding-top: 0;
      padding-bottom: 30px; } }
  @media (min-width: 64rem) {
    .inner-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center; } }
@media (min-width: 64rem) {
  .about .intro {
    margin-bottom: 0; }
    .about .intro p:last-child {
      margin-bottom: 0; } }

@media (min-width: 64rem) {
  .sections h2:first-child {
    margin-top: 0; } }

a, a:visited {
  position: relative;
  display: inline-block;
  color: #ffd53d;
  text-decoration: underline;
  text-decoration-color: rgba(255, 213, 61, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  padding: 1px 0;
  transition-property: color, text-decoration-color;
  transition-duration: 0.09s;
  transition-timing-function: ease; }

a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #ffd53d;
  transition-property: height, width, transform;
  transition-duration: 0.14s;
  transition-timing-function: ease; }

a:hover, a:focus {
  color: #0f1219;
  text-decoration-color: transparent; }

a:hover::before, a:focus::before {
  height: 100%;
  width: calc(100% + 0.3em);
  transform: translateX(-0.15em) skew(-5deg); }

a, b, strong {
  font-weight: 400; }

.avatar {
  --size: 180px;
  display: block;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 35px;
  border-radius: 50%;
  object-fit: cover; }

.intro, h2 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "SOFT" 30, "WONK" 1; }

.intro {
  font-size: 1.1em;
  font-weight: 200;
  margin-bottom: 70px; }
  @media (max-width: 40rem) {
    .intro {
      font-size: 1.0em; } }
h2 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 40px 0 0; }
  @media (max-width: 40rem) {
    h2 {
      font-size: 1.1em; } }
ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  ul li {
    margin: 10px 0; }
  ul.horizontal li {
    display: inline-block;
    margin-right: 20px; }
    ul.horizontal li:last-child {
      margin-right: 0; }
