:root {
    --branding-color: #d363ffc5;
    --secondary-color: #f9f7fe;
    --heading-font-family: "playfair display", sans-serif;
    --default-font-family: "poppins", sans-serif;
}

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

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

h1 {
    font-size: 96px;
}

h2 {
    font-size: 64px;
}


h3{
    font-size: 48px;
}

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

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

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

.hero h1 {
    font-size: 60px;
    padding: 20px;
}

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

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

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

.content h2 {
    font-size: 30px;
    font: 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;
    text-align: center;
}

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

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

}

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

@media (max-width: 900px) {
    h1 {
        font-size: 44px;
        line-height: 56px;
    }
    h4 {
        font-size: 18px;
    }
    .project-description {
        padding: 0;
        text-align: center;
    }
    footer .contact-box {
    padding: 30px;
}
}

.logo {
    max-width: 150px;
}

.active {
    color: var(--branding-color)!important;
}

.nav-item {
    padding: 0 10;
}

.email-link {
    text-decoration: none;
    color: var(--heading-font-family);
    font-size: 24px;
    transition: all 150ms ease-in-out;

}

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

.social-links {
    text-decoration: none;
}

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

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

}

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

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

footer {
    margin: 60px 0;
}

a {
    text-decoration: underline;
    transition: all 150ms ease-in-out;
    color: var(--default-font-family);
}

a:hover {
    color: var(--branding-color);
    text-decoration: none;
}

