:root{
    --branding-color:#6c63ff;
    --secondary-color:blanchedalmond;
    --heading-font-family: "Playfair Display", serif;
    --default-font-family:"Poppins", san-serif;
}
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: 96px;
    line-height: 1.5;
}
h4{
    font-size: 48px;
}
p{
     font-weight: normal;
     font-size: 16px;
     line-height: 1.7;
}
.hero{
   background-color:var(--secondary-color) ;
   text-align: center;
   padding: 80px 20px; 
}
.hero p{
    font-family:var(--default-font-family);
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #272142;
}
.hero h2{
    font-family:var(--default-font-family);
    font-weight: normal;
    font-size: 20px;
    line-height: 2;
}
.content-container{
    padding: 50px 60px;
    
}

.content h1{
    font-size:64px ;
    line-height: 1.5;
}
.content h2{
    font-size: 18px;
    font-family: var(--default-font-family);
}
.content h3{
 font-size: 24px;
 font-family: var(--default-font-family);
 line-height: 1.5;
  }
.content p{
   font-size: 14px; 
}
.content-container img{
    border-radius: 10px;
}
.content{
    margin: 30px;
}
.btn-branding{
    background:var(--branding-color);
    border-radius: 4px;
    color: white;
    font-size: 20px;
    line-height: 27px;
    padding: 15px 30px;
}
.btn-branding-outline{
    color: var(--branding-color);
    border: 1px solid var(--branding-color);
    border-radius: 4px;
    font-size: 20px;
    line-height: 27px;
    padding: 15px 30px;  
}
.btn-branding-outline:hover{
    background: var(--branding-color);
}
.project-description{
    padding: 120px 60px;

}
nav{
    padding: 20px 0;
}
nav li{
    display: inline;
    list-style-type: none;
    line-height:42px;
    margin-left:10px;
}
nav a{
    text-decoration: none;
    color: black;
    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: 14px;
    text-align: center;
}
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; 
   transition: all 150ms ease-in-out;
   border-radius: 50%;

}
footer .social-links a:hover{
    color: white;
    background:var(--branding-color);
    }
 footer .contact-box{
  background: var(--secondary-color); 
  padding: 30px 120px;
  border-radius: 8px; 
  margin-left: 12px;
 }
 footer .contact-box p{
    margin: 0;
 }
 
.form-control:focus{
    border: 2px solid var(--secondary-color);
}   

@media(max-width:900px){
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 42px;
    }
    h4{
        font-size:18px;
    }
    .content{
        text-align: center;
        padding: 0;
         }
    .project-description{
        padding: 0;
        text-align: center;
    }
    nav a{
        font-size: 14px;
    }
    
}
