body {
    font-family: var(--default-font-family);
}

h1,h2,h3,h4,h5,h6 {
    color: black;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

h1 {
    font-size: 96px;
}

h2 {
    font-size: 64px;
}

h3 {
    font-size: 48;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    line-height: 30px;
}

.hero {
    background: #f9f7fe;
    text-align: center;
    padding: 80px 20px;
}

.hero p {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #272142;
}

.hero h2 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    line-height: 2;
    font-size: 24px;
}

button {
    background: #6c63ff;
    border-radius: 4px;
    color: white;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
    border: none;
}

.click2 {
    background: white;
    color: #6c63ff;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
    border: 1px solid #6c63ff;
}

.project-description {
    padding: 120px 60px;
}

.content-container {
    font-size: 64px;
    padding: 60px 20px;
}

.content h1 {
    font-size: 64px;
    line-height: 80px;
}

.content h2 {
     font-size: 18px;
    font-family: "Poppins", sans-serif;   
}

.content h3 {
    font-size: 24px;
    line-height: 1.5;
    margin: 20px 0 0;
    font-family: "Poppins", sans-serif;
}

.content-container p {
    font-size: 14px;
}

.content {
    margin: 30px;
    text-align: center;
    padding: 0;
}

.logo {
    max-height: 150px;
}

.nav {
    padding: 20px 0;
}

nav ul {
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    list-style: none;
    line-height: 42px;
    margin-left: 15px;
}

nav a {
    text-decoration: none;
    color: #272142;
    transition: all 100ms ease-in-out;
}

nav a:hover, nav li.active a {
    color: #6c63ff;

    footer {
        margin: 60px 0;
    }

    footer .contact-box {
        background: #f9f7fe;
        padding: 30px 120px;
        border-radius: 10px;
    }

    footer .contact-box p {
        margin: 0;
    }

    footer .email-link {
        text-decoration: none;
        color: black;
        font-size: 24px;
    }

    footer .email-link:hover {
        color: #6c63ff;
    }

    footer .social-links a {
        margin: 0 20px;
        color: #6c63ff;
        background: #f9f7fe;
        padding: 10px 14px;
        border-radius: 50%;
        font-size: 18px;
        transition: all 100ms ease-in-out;
    }

    footer .social-links a:hover {
        color: white;
        background: #6c63ff;
    }

    @media (max-width: 900px) {
        h1 {
            font-size: 44px;
            line-height: 1.5;
        }

        h2 {
            font-size: 44px;
        }

        h4 {
            font-size: 26px;
        }

        .project-description {
        padding: 0;
        text-align: center;
    }

    .content-container {
        text-align: center;
        padding: 0;
    }

    nav a {
        font-size: 12px;
    }
}

















