html {
  font-size: 16px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

li {
  list-style-type: none;
}

.page-title {
  font-size: 3em;
  margin-bottom: 0.25em;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

.social-media-section {
  margin-top: 2rem;
}

section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headshot {
  border-radius: 25%;
  border: 0.25rem solid rgb(29, 29, 29);
  max-width: 15rem;
  flex-grow: 0;
  align-self: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  animation: 1.5s fadeInUp;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
