:root {
    --main-font-color: #494948;
    --heading-font-family: "Playfair", serif;
    --default-font-family: "Poppins", sans-serif;
    --button-color: #ffac00;
    --default-color: #282044;
    --background-color: #faf9f6;
}

body {
    color: var(--main-font-color);
    font-family: var(--default-font-family);
}

h1 {
    font-family: var(--heading-font-family);
    font-weight: bold;
    font-size: 96px;
    line-height: 1;
}
h2 {
    font-size: 35px;
    font-family: var(--default-font-family);
}
h4 {
    font-size: 35px;
}
p {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
}
.container {
    background-color: var(--background-color);
}
.intro-container h1 {
    font-size: 60px;
    line-height: 80px;
}
.intro-container h2 {
    font-size: 35px;
    line-height: 2;
}
.intro-container h3 {
    font-size: 25px;
    font-weight: 500;
}
.intro-content {
    margin: 30px;
}
img {
    /* this targets all images */
    border-radius: 4px;
}
.img-container {
    max-height: 500px;
    max-width: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.img-profile {
    position: relative;
    top: 110px;
}
.intro {
    text-align: center;
    background-color: var(--background-color);
    padding: 160px 20px;
}
.about p {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.btn-contact {
    text-decoration: none;
    background: var(--button-color);
    border-radius: 4px;
    color: var(--default-color);
    font-size: 18px;
    line-height: 27px;
    padding: 12px 20px;
}

.project {
    padding: 20px 20px;
}
@media (max-width: 960px) {
    h1 {
        font-size: 46px;
    }
    .intro-content h1 {
        font-size: 40px;
        line-height: 0.8;
    }
    .intro-content h2 {
        font-size: 20px;
    }
    .intro-content h3 {
        font-size: 23px;
    }
    .intro p {
        font-size: 20px;
    }
    h2 {
        font-size: 25px;
    }
    h4 {
        font-size: 25px;
    }
    .project {
        padding: 0;
        text-align: center;
    }
    .container {
        text-align: center;
    }
    p {
        font-size: 15px;
    }
    .img-container {
        max-height: 300px;
        max-width: 300px;
    }
    .img-profile {
        top: 50px;
        width: 300px;
    }
}


.project-intro {
    font-weight: 800;
    font-size: 20px;
}
.button-learnmore {
    text-decoration: none;
    background: var(--background-color);
    border: 3px solid var(--button-color);
    border-radius: 4px;
    color: var(--default-color);
    font-size: 18px;
    line-height: 27px;
    padding: 12px 20px;
}

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

footer .email-link {
    text-decoration: none;
    color: var(--main-font-color);
    font-size: 24px;
}
footer .email-link:hover {
    color: var(--button-color);
}

footer .social-links a {
    margin: 0 20px;
    padding: 10px 15px;
    font-size: 20px;
    color: var(--button-color);
    background-color: var(--background-color);
}
footer .social-links a:hover {
    background-color: var(--button-color);
    color: var(--background-color);
}

.project img {
  transition: transform 0.3s ease;
}
.project img:hover {
  transform: scale(1.03);
}


