:root {
  --branding-color: #6c63ff;
  --heading-font-family: "playfair Display", serif;
  --default-font-family: "poppins", sans-serif;
  --secondary-color: #f9f7fe;
}
body {
  font-family: var(--default-font-family);
}

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

h2 {
  font-size: 64px;
}

h4{
    font-size: 48px;
}

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

.logo{
    max-height: 150px;
}

nav{
    padding: 30px;
}
nav ul{
    padding: 0;
    margin: 0;
    line-height: 42px;
}

nav li{
    display: inline;
    list-style: none;
    margin-left: 15px
}

nav a{
    text-decoration: none;
    color:#272142;
    transition: all 100ms ease-in-out;
}

nav a:hover,nav li.active a{
    color: var(--branding-color);
}

h3 a{
  font-size: 16px;
}

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

.intro p {
  font-family: var(--default-font-family);
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.intro h2 {
  font-family: var(--default-font-family);
  font-weight: normal;
  font-size: 24px;
  line-height: 1.3;
  color: #272142;
}

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

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

.content-section h2 {
  font-size: 18px;
  font-family: var(--default-font-family);
}

.content-section h3 {
  font-size: 24px;
  font-family: var(--default-font-family);
}
.content-section p {
  font-size: 14px;
}

.content-section {
  margin: 30px;
}

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

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

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

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

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

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

footer .contact-box a{
    text-decoration: none;
}

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

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

footer .social-links a:hover{
    color: white;
    background: var(--branding-color);
    }

@media (max-width: 800px) {
  h1 {
    font-size: 45px;
    line-height: 35px;
  }
  h2 {
    font-size: 35px;
  }

  h4{
    font-size: 26px;
  }
  .intro {
    padding: 60px 20px;
  }
  .content-section p{
    text-align:justify;
    padding: 0;
  }
  .project-description {
    padding: 0;
    text-align: center;
  }
  
  nav a{
    font-size: 12px;
  }
}
