.work-projects h2 {
    color: var(--colour-rust);
}
.work-projects h3 {
    text-align: center;
    margin-block-start: 0.5em;
}
.work-projects a {
    text-decoration: none;
    color: inherit;
}
.project-image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.work-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
@media (max-width: 600px) {
    .work-projects {
        grid-template-columns: 1fr;
    }
}