* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: #000;
  letter-spacing: .01em;
  font-family: Inter, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  color: #000;
  text-underline-offset: 3px;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration: underline #ddd;
  text-decoration: underline #ddd;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color .2s;
}

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

.wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1424px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem;
  display: flex;
  position: relative;
}

.left {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.headshot {
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  margin-bottom: .5rem;
}

.right {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.work {
  width: 100%;
}

.text-secondary {
  color: #777;
}

.text-at {
  font-size: .9375rem;
}

.about {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

@media screen and (max-width: 991px) {
  .wrapper {
    flex-flow: column;
  }

  .left {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding: 1.25rem;
  }

  .left {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
  }

  .right {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
