:root {
    --branding-color: #6c63ff;
    --secondary-color: #f9f7fe;
    --heading-font-family: 'Playfair Display', serif;
    --default-font-family: 'Poppins', sans-serif;
}

body{
    font-family: var(--default-font-family);
}
nav {
  padding: 20px 0;
}
.logo{
  max-height: 40px;
  margin: 0;
}

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

nav li{
  list-style: none;
  display: inline;
  line-height: 42px;
}

nav a{
  text-decoration: none;
  color:#272142;
  font-size: 18px;
  padding: 0 20px;
}

nav a:hover, nav li.active a{
  color: var(--branding-color);
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: var(--heading-font-family);
  font-weight: bold;
}
h1 {
  font-size: 96px;
  line-height: 1.5;
}
h2{
  font-size: 64px;
}

h4 {
  font-size: 48px;
}

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

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

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

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

.content-container {
  padding: 60px 20px;
  text-align: center;
}

.content h1{
  font-size: 64px;
  line-height: 80px;
}

.content h2 {
  font-size: 18px;
  line-height: 27px;
  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{
  font-size: 14px;
}

.content {
 margin: 30px;
 }

.btn-primary {
  background-color: var(--branding-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  line-height: 27px;
}

.btn-branding-outline {
  color: var(--branding-color);
  border: 1px solid var(--branding-color);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  line-height: 27px;
}

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

a {
  color: var(--branding-color);
  text-decoration: none;
  font-weight: bold;
} 
a:hover {
  color: #272142;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
footer {
  margin: 60px 0;
}

footer .contact-box {
  background-color: var(--secondary-color);
  padding: 30px 120px;
  margin: 0 20px;
  border-radius: 10px;
}

footer .contact-box p {
  margin: 0;
}
footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;

}

footer .email-link:hover {
  color: var(--branding-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

footer .social-link a {
  margin: 20px;
  color: var(--branding-color);
  background-color: var(--secondary-color);
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 50%;
}

footer .social-link a:hover {
  color: var(--secondary-color);
  background-color: var(--branding-color);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 960px) {

  h1{
    font-size: 44px;
  }
  h2 {
    font-size: 44px;
  }
  .hero {
    padding: 80px 20px;
  }
  .hero p {
    font-size: 24px;
  }
  .project-description {
    padding: 0px;
    text-align: center;
  }
  .content-container {
   text-align: center;
   padding: 0;
  }

  nav a{
    font-size: 12px;
  }


}