:root {
  --branding-color: #6c63ff;
  --secondary-color: #f9f7fe;
}

h1 {
  color: black;
  font-family: "Playfair Display", serif;
  font: bold;
  font-size: 96px;
  line-height: 1.5;
}
h2 {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 2;
}

h3 {
  font-size: 38px;
  font-family: "Playfair Display", serif;
}

.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 80px 20px;
}

.btn-branding {
  background: var(--branding-color);
  border-radius: 4px;
  color: white;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}

.heading {
  font-size: 64px;
  font-family: "Playfair Display", serif;
  font-weight: bold;
}

p {
  font-size: 16px;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
}

.btn-branding-outline {
  color: var(--branding-color);
  border: 1px solid var(--branding-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}

.project-description {
  padding: 10px 3% 20px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
    line-height: 1.5;
  }
  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 26px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }
  .content-container {
    text-align: center;
    padding: 0;
  }
}

.headshot {
  padding: 160px 20px;
}

.content-container h1 {
  font-size: 64px;
  line-height: 80px;
  font-family: "Playfair Display", serif;
}

.content-container h2 {
  font-family: "Poppins", sans-serif;
}

.content-container {
  font-size: 18px;
  padding: 60px 20px;
  background-color: white;
}

.content {
  margin: 30px;
}

.content h3 {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin: 20px 0 0;
}

.content p {
  font-size: 14px;
}

.logo {
  max-width: 215px;
}

nav {
  padding: 20px 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
  font-family: "Poppins", sans-serif;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #272142;
  transition: all 100ms ease-in-out;
}
nav a:hover,
nav li.active a {
  color: var(--branding-color);
}

footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;
  text-align: center;
}

footer .email-link:hover {
  color: var(--branding-color);
}

footer .social-links {
  margin: 0 20px;
  padding: 10px;
}

footer .social-links a:hover {
  color: white;
  background: var(--branding-color);
  transition: all 100ms ease-in-out;
}
footer .contact-box {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

footer .contact-box p {
  margin: 0;
}
