/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
:root {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
* {
  line-height: calc(1em + 0.5rem);
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6, li, dl, dt, blockquote {
  overflow-wrap: break-word;
  hyphens: auto;
}



/* Inter's suggested CSS to use their font */
:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, Arial, sans-serif; }
}


body {
  background-color: #f5f5f5;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  margin: 2rem 0;
}

h2 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

h3 {
  font-size: 1.2rem;
  margin-top: 0.7rem;
}

h4 {
  font-size: 1rem;
  margin-top: 0.7rem;
}

p {
  margin-top: 0.3rem;
}

ul {
  margin-left: 1rem;
}

.container {
  max-width: 960px;
  margin: 2rem auto;
}

#research {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  justify-content: center;
  column-gap: 2rem;
}

#profile-pic {
  max-width: 350px;
  object-fit: contain;
}

#photography-pic {
  max-width: 800px;
  object-fit: contain;
  margin: auto;
  margin-top: 2rem;
}
