*,
*::after,
*::before,
figure {
  box-sizing: border-box;
  line-height: 1;
  margin: 0;
  padding: 0; }

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; }

body {
  background-color: #fff;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  letter-spacing: -0.03em; }

body,
html {
  height: 100%; }

a {
  text-decoration: none !important;
  color: rgba(0, 0, 0, 0.5);
  will-change: color;
  transition: color 0.3s ease-in-out; }
  a:hover {
    color: black; }

.container {
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%; }
  @media (min-width: 600px) {
    .container {
      max-width: 420px;
      padding-left: 2rem;
      padding-right: 2rem; } }
.intro {
  display: flex;
  height: 60vh;
  align-items: center; }
  @media (min-width: 600px) {
    .intro {
      height: 70vh; } }
  @media (min-width: 900px) {
    .intro {
      height: 75vh; } }
  .intro h1 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-top: -5vh; }
    @media (min-width: 600px) {
      .intro h1 {
        font-size: 5vw;
        margin-top: -5vw;
        max-width: 90%; } }
    @media (min-width: 1800px) {
      .intro h1 {
        font-size: 6rem;
        margin-top: -6rem; } }
.personal {
  display: flex;
  width: 100%;
  padding: 1.5rem 0; }
  .personal .profile {
    align-self: flex-start; }
    .personal .profile img {
      width: 50%;
      max-width: 100px; }
      @media (min-width: 1200px) {
        .personal .profile img {
          width: 75%; } }
      @media (min-width: 1800px) {
        .personal .profile img {
          width: 100%; } }
  .personal .resume {
    font-weight: 500;
    letter-spacing: 0;
    margin-left: auto;
    align-self: center; }

.projects {
  background-color: #f5f5f5;
  padding-top: 4rem;
  padding-bottom: 4rem; }
  .projects .label {
    display: flex;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0; }

ul.p-list {
  list-style: none;
  margin-bottom: 5rem; }
  ul.p-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    will-change: background-color;
    transition: background-color 0.4s ease;
    display: flex; }
    ul.p-list li:hover {
      background-color: rgba(0, 0, 0, 0.02); }
      ul.p-list li:hover:after {
        content: '\2192';
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 1rem;
        font-size: 1rem; }
        @media (min-width: 600px) {
          ul.p-list li:hover:after {
            font-size: 2rem; } }
    ul.p-list li a {
      display: flex;
      font-size: 1.5rem;
      font-weight: 500;
      color: #000;
      padding: 1rem 0;
      width: 100%; }
      @media (min-width: 600px) {
        ul.p-list li a {
          font-size: 3vw;
          padding: 1.5rem 0; } }
      @media (min-width: 1800px) {
        ul.p-list li a {
          font-size: 4rem;
          padding: 2rem 0; } }
footer {
  padding-top: 1rem;
  padding-bottom: 1rem; }

ul.inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  align-items: center; }
  ul.inline li a {
    display: inline-flex;
    margin-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    letter-spacing: 0; }

.page-study {
  padding-top: 4rem; }

.page-header {
  z-index: 99;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: -4rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 1px 8px 0 rgba(0, 0, 0, 0.05); }
  @media (min-width: 900px) {
    .page-header {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem; } }
  .page-header a {
    display: inline-flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase; }
    @media (min-width: 600px) {
      .page-header a {
        font-size: 1.2rem; } }
.page-title {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700; }
  @media (min-width: 600px) {
    .page-title {
      margin-top: 1vw;
      font-size: 5vw; } }
  @media (min-width: 900px) {
    .page-title {
      margin-top: 2vw;
      margin-left: -0.2vw; } }
  @media (min-width: 1800px) {
    .page-title {
      font-size: 6rem;
      margin-top: 2.5rem;
      margin-left: -0.3rem; } }
p {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.7);
  max-width: 90%;
  letter-spacing: -0.01em; }
  @media (min-width: 600px) {
    p {
      font-size: 2.5vw;
      max-width: 75%; } }
  @media (min-width: 900px) {
    p {
      font-size: 1.5vw;
      max-width: 50%; } }
  @media (min-width: 1800px) {
    p {
      font-size: 2rem; } }
.highlight {
  background-color: #dae5ff;
  color: rgba(0, 0, 0, 0.7);
  padding: 0rem 0.2rem;
  will-change: background-color;
  transition: background-color 0.3s ease-in-out; }
  .highlight:hover {
    background-color: #c1d3ff; }

.images figure {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }
  @media (min-width: 600px) {
    .images figure {
      margin-top: 3rem;
      margin-bottom: 3rem; } }
  @media (min-width: 900px) {
    .images figure {
      margin-top: 5rem;
      margin-bottom: 5rem; } }
figure.one {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center; }
  figure.one img {
    max-width: 100%;
    height: auto; }

figure.one-smaller {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center; }
  figure.one-smaller img {
    max-width: 100%;
    height: auto; }
    @media (min-width: 900px) {
      figure.one-smaller img {
        max-width: 60%; } }
figure.two {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center; }
  figure.two img {
    width: 100%;
    height: 100%;
    align-self: flex-start;
    margin-bottom: 2rem; }
    @media (min-width: 600px) {
      figure.two img {
        width: 50%;
        height: 50%;
        margin-bottom: 0; } }
figure.three {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center; }
  figure.three img {
    width: 50%;
    height: 50%;
    align-self: flex-start;
    margin-bottom: 2rem; }
    @media (min-width: 600px) {
      figure.three img {
        width: 25%;
        height: 25%;
        margin-bottom: 0; } }
figure.four {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center; }
  figure.four img {
    width: 50%;
    height: 50%;
    align-self: flex-start;
    margin-bottom: 2rem; }
    @media (min-width: 900px) {
      figure.four img {
        width: 25%;
        height: 25%;
        margin-bottom: 0; } }
