:root {
    --branding-color: #6c63ff;
    --heading-font-family: "Playfair Display", serif;
    --default-font-family: "Poppins", 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: 96px;
    line-height: 1.5;
}

h2 {
    font-size: 44px;
}

h3{
    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;
}

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

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

.content h3 {
    font-size: 24px;
    line-height: 1;
    font-family: var(--default-font-family);
}

.content p {
    font-size: 14px;
}
.content {
    margin: 30px;
}

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

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

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

.photo-me {
    max-width: 300px;
}

.logo {
    max-height: 40px;
}

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

.nav-item {
    padding: 0 10px;
    line-height: 14px;
}
footer {
    margin: 60px 0;
}

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

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

footer .email-link {
    text-decoration: none;
    color: #000;
    font-size: 24px;
}

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

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

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

@media (max-width: 900px) {
    h1 {
        font-size: 44px;
        line-height: 2;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 26px;
    }

    .content {
        text-align: center;
        padding: 0;
    }

    .project-description {
        padding: 0;
        text-align: center;
    }

    footer .contact-box {
        padding: 30px;
    }

}