.project-list {
    height: 100%;
}

.project-item {
    padding: 1.4rem 0;
    height: 16%;
    
    margin-bottom: 2rem;

    h2 {
        margin-top: 0;
    }

}

@media screen and (min-width: 700px) {
    .project-item {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 1rem;
    }
}

.project-image {
    display: none;
}

@media screen and (min-width: 700px) {
    .project-image {
        display: inline-block;
        position: relative;
        height: 100%;
        width: 100%;

        img {
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit:cover;
        }
    }
}