h1 {
  font-size: 72px;
  font-weight: bold;
}
h2 {
  font-size: 64px;
  font-weight: bold;
  line-height: 35px;
}

h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 35px;
}
h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 35px;
}
img {
  border-radius: 12px;
}
body {
  background: #ffffff;

  font-family: "Nunito", sans-serif;
}
.hero {
  background-image: url("/images/hero-back.jpg");
  background-size: cover;
  background-color: lightgray;
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.image-caption {
  font-size: 28;
  font-weight: bold;
}

.homepage-image-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.homepage-image {
  width: 560px;
  height: 250px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.content-header {
  text-align: center;
  color: #272142;
}
.headshot {
  justify-content: left;
  max-height: 450px;
}
.favorite-mobs {
  text-align: center;
  color: #272142;
}
.about-image-caption {
  font-size: 24;
  font-weight: bold;
  justify-content: left;
}
.content {
  color: #272142;
  width: 760px;
  margin: auto;
}
.about-content {
  color: #272142;
  width: 960px;
  margin: auto;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  display: flex;
  gap: 20px;
}

.work-image {
  width: 760px;
  height: 450px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: auto;
}
.small {
  text-transform: uppercase;
  color: darkviolet;
  font-size: 18px;
}
.logo {
  max-width: 150px;
  border-radius: 0px;
}
nav {
  padding: 20px 0;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 22px;
  margin-left: 10px;
}

nav a {
  text-decoration: none;
  color: #272142;
  font-weight: bold;
  transition: all 100ms ease-in-out;
}
nav a:hover,
nav li.active a {
  color: darkviolet;
}
footer {
  color: #272142;
}
.footer-logo {
  height: 24.75px;
}
.icons i {
  padding: 10px;
}
@media (max-width: 576px) {
  h1 {
    font-size: 44px;
    text-align: center;
  }
  h3 {
    font-size: 18px;
  }
  h2 {
    font-size: 18px;
  }
  .logo {
    display: none;
  }
  .about-content {
    flex-direction: column;
  }
}
