: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);
}

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

h3 {
    font-size: 35px;
    margin: 10px 0;
    padding: 10px 20px;
}

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

.hero {
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.6), 
    rgba(0, 0, 0, 0.9)),
    url("../images/coding.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 10px;
    margin-top: -80px;
}

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

.hero h1 {
    color: white;
}

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

.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: 2.4;
    font-family: var(--default-font-family);
}

.content p {
    font-size: 20px;
}

.content {
    margin: 30px;
}

.container {
    display: block;
}

.container ul {
    margin-top: 15px;
}

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

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

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

.btn-branding-outline:hover {
  background: var(--branding-color);
  color: white;
}

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

.project-description p {
    line-height: 30px;
    font-size: 24px;
}

.logo {
    flex-direction: row;
    max-width: 100%;
    height: auto;
    width: 60%;
    margin-top: -120px;
}

img {
    border-radius: 20px;
}

nav {
    padding: 25px 0;
    white-space: nowrap;
   
}

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

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

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

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

footer {
    margin: 60px 0;
    border-top: 1px solid #888;
}

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

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


footer p {
    font-size: 18px;
    font-weight: 20;
    color: rgb(168, 163, 163);
}


footer .email-link {
    text-decoration: none;
    color: black;
    font-size: 28px;
    margin: 16px 0;
    padding: 10px 20px;
}

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

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

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

@media (max-width: 960px) {
    h1 {
        font-size: 40px;
        line-height: 1;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 26px;
    }

    .logo {
        margin-top: -10px;
        max-width: 50%;
    }

    .hero {
        margin-top: 20px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .content-container .social-links {
        font-size: 26px;
    }

    .project-description {
        padding: 5px;
    }

    footer .contact-container {
    font-size: 100px;
 }
}