body {
    font-size: 22px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    background-color: #F6FAF1;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #4E5C52;
}

p {
    margin: 0;
}

a {
    font-weight: 600;
    text-decoration: underline;
    color: #788156;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #788156;
    margin: 0;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 0 0;
    color: #788156;
}

.container {
    max-width: 1066px;
    margin: 0 auto;
    padding: 80px 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #D8FABF;
    color: #788156;
    text-decoration: underline;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4rem 0;
}

.button img {
    max-height: 20px;
}

.divider {
    height: 12px;
    background: #ECF1E4;
    margin: 4rem 0;
}



/*---Profile---*/

.profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.profile-img {
    width: 212px;
    height: 212px;
    border-radius: 100%;
    object-fit: cover;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile .button {
    margin: 0;
}

.intro {
    font-size: 30px;
    line-height: 1.4;
    color: #4E5C52;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 0.75rem;
}



/*---Sections---*/

.section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.date {
    font-size: 20px;
    color: #4E5C52;
    margin: 0.25rem 0 2rem 0;
}

.view-work {
    align-self: flex-start;
    margin-top: 2rem;
}



/*---Footer---*/

.footer p {
    font-size: 18px;
    color: #788156;
    opacity: 0.5;
    text-align: center;
}



/*---Portfolio---*/

.project {
    max-width: 874px;
    margin: 0 auto;
    padding: 80px 20px;
}

.project p {
    margin: 2rem auto;
}

.project h1 {
    font-size: 64px;
    text-align: center;
    margin: 0 auto;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #788156;
}

.project h3 {
    margin: 4rem auto 0 auto;
}

.project-date {
    font-size: 20px;
    text-align: center;
    margin: 1rem auto 4rem auto;
}

.project img {
    max-width: 100%;
    margin-bottom: 2rem;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.12),
                1px 2px 6px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb p {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 6px;
    line-height: 1;
    margin: 0 auto 4rem;
    padding: 0;
}

.breadcrumb img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 8px 0 0;
}



/*---Responsive---*/

@media (max-width: 1160px) {
    .container, .project {
        padding: 40px 40px;
    }

    .divider {
        margin: 0 0 60px 0;
    }
    
    .profile {
        grid-template-columns: 150px 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }

    .intro {
        font-size: 26px;
    }

    .section {
        grid-template-columns: 150px 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    p {
        font-size: 20px;
    }

    .project h1 {
        font-size: 54px;
    }
}



@media (max-width: 600px) {
    .container, .project {
        padding: 20px;
    }
    
    .profile {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .social-links {
        text-align: left;
        justify-content: left;
    }

    .intro {
        font-size: 24px;
    }

    .section {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    @media (max-width: 375px) {
    
    .profile-img {
        width: 240px;
        height: 240px;
    }

    .section-content {
        gap: 0px;
    }

    h2 {
        margin-bottom: 1rem;
    }

    h3 {
    font-size: 20px;
    }

    p {
        font-size: 18px;
    }

    .project h1 {
        font-size: 42px;
    }

    .project img {
        border-radius: 8px;
    }

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

    .breadcrumb img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }
}