:root {
  --branding-color: #6c63ff;
  --secondyry-color: #f9f7ff;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", sans-serif;
}

body {
  font-family: var(--default-font-family);
}

h1,
h2,
h3,
h4,
h4,
h6 {
  color: black;
  font-weight: bold;
  font-family: var(--heading-font-family);
}

h1 {
  font-size: 96px;
}
h2 {
  font-size: 50px;
}
h4 {
  font-size: 48px;
}

p {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

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

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-weight: normal;
  line-height: 1px;
  font-size: 24px;
}

.content-container {
  padding: 160px 20px;
}
.content h1 {
  font-size: 64px;
  line-height: 60px;
}
.content h2 {
  font-size: 18px;
  font-family: var(--default-font-family);
}

.content h3 {
  font-size: 24px;
  line-height: 1.5;
  margin: 20px 0 0;
  font-family: var(--default-font-family);
}
.content p {
  margin: 0;
  font-size: 14px;
}
.content {
  margin: 30px;
}

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

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

.project-description {
  padding: 120px 60px;
}

nav {
  padding: 20px 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 40px;
  margin-left: 15px;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav a {
  text-decoration: none;
  color: #272142;
  transition: all 100ms ease-in-out;
}
nav li .active a,
nav a:hover {
  color: var(--branding-color);
}

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

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

footer {
  margin: 60px 0;
}

footer .social-links a {
  margin: 0 20px;
  color: var(--branding-color);
  background: var(--secondyry-color);
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 50%;
  transition: all 100ms ease-in-out;
}

footer .contact-box {
  background-color: var(--secondyry-color);
  padding: 30px 60px;
  border-radius: 10px;
}
footer .contact-box p {
  margin: 0;
}
footer .social-links a:hover {
  color: white;
  background: var(--branding-color);
}
@media (max-width: 480px) {
  .hero {
    padding: 20px 5px;
    overflow: visible;
  }

  .content {
    text-align: center;
    padding: 0;
  }
  h1 {
    font-size: 44px;
    line-height: 2;
  }
  h2 {
    font-size: 20px;
    line-height: 1.1px;
    margin: 10px 0;
  }

  h4 {
    font-size: 26px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }
  nav a {
    font-size: 14px;
  }
}
