body {
  font-family: "Trebuchet MS", "sans-serif";
  font-size: 1.8rem; /* 18px */
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  background-color: pink;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4.2rem;
}

a {
  text-decoration: none;
  color: black;
}

img {
  display: block;
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-list {
  display: flex;
}

.nav-list a {
  display: block;
  font-size: 2.2rem;
  padding: 0.5rem 2rem;
}

.nav-list a:hover {
  background: black;
  color: white;
}

.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.about-section p {
  font-size: 3rem;
  font-weight: 100;
}

.about-section img {
  display: block;
  height: 40rem;
  width: 40rem;
  margin: 20px;
  border-radius: 50%;
}

.about-section a {
  font-size: 2rem;
  display: block;
  margin: 20px;
  padding: 6px;
  background: black;
  color: whitesmoke;
  border: 1px solid black;
}

.about-section a:hover {
  background: whitesmoke;
  color: black;
  border: 1px solid whitesmoke;
  text-decoration: underline;
}

.license-section {
  text-align: center;
  padding: 4rem 2rem;
}

.license-section-header {
  margin: 0 auto 5rem auto;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 3rem;
  width: 100%;
}

.licenses {
  border: 1px solid;
}

.licenses:hover {
  background: blue;
  color: white;
}

.license-title {
  font-size: 2rem;
  padding: 2rem 0.5rem;
}

.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 30vh;
  padding: 1 1rem;
}

.contact-links {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 3rem;
  margin-top: 0.5rem;
}

.contact-details:hover {
  text-decoration: underline;
}

footer {
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2rem;
}

footer p {
  margin: 1rem;
}

@media (max-width: 75em) {
  html {
    font-size: 60%;
  }
  h1 {
    font-size: 4rem;
  }
  .contact-links {
    flex-direction: column;
  }
}
