body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 80%;
  margin: 0 auto;
  min-height: 100vh;
  padding: 1rem;
  font-size: calc(10px + 2vmin);
}

/* This .content div and its properties, along with the flex-shrink properties of the footer, are what push the footer all the way to the bottom of the page.  */
/* .content {
  flex: 1 0 auto;
} */

footer {
  /* flex-shrink: 0; */
  position: relative;
  bottom: 0px;
  text-align: center;
}

footer small {
  font-size: .4em;
  font-weight: 300;
}

footer a {
  font-weight: 300;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  width: min-content;
  margin: 0;
}

header {
  margin-top: 2.5em;
}

#title {
  margin: 0;
  font-size: 1em;
}

address {
  display: flex;
  font-style: normal;
  flex-direction: column;
  width: fit-content;
  font-size: 0.5em;
  margin: 2em 0;
  color: #333;
}

a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

#profile-photo {
  max-width: 4em;
  border-radius: 100px;
  float: right;
}

main {
  display: flex;
  justify-content: space-between;
}

section:nth-child(-n + 2) {
  margin-right: 1.5em;
}

section {
    width: 10em;
}

h4,
ul {
  padding: 0;
  margin: 0;
}

article {
  font-size: 0.6em;
  margin-bottom: 2em;
}

.article-item {
    margin-bottom: 2em;
}

.article-item-title {
    font-weight: 500;
}

h4 {
  margin: 0;
}

p {
  margin: 0;
}

.article-title {
  font-weight: 400;
  font-size: 1em;
  width: 100%;
  border-bottom: 0.5px solid black;
}

li {
  list-style: none;
}

#school {
  font-size: .8em;
  font-weight: 500;
  margin-top: .5rem;
}


