.project-card {
    margin-bottom: 4rem;
}

.project-card * {
    transition: color 300ms;
}

.project-card:hover * {
    color: var(--color-accent);
}

.project-card:hover img {
    transform: scale(1.05)
}

.project-card figure {
    width: 100%;
    height: 25vw;
    position: relative;
    overflow: hidden;
    margin-bottom: .75rem;
}

.project-card img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; 
    object-fit: cover;
    transition: transform 1s;
}

.project-card h2 {
    margin-top: -.25rem;
}


/* TABLET */
@media only screen and (max-width: 900px) {
    .project-card figure {
        height: 50vw;
    }
}


/* MOBILE */
@media only screen and (max-width: 425px) {
    .project-card figure {
        height: 70vw;
    }

    .project-card h1.type--body {
        display: none;
    }

    .project-card h1.type--display {
        display: block;
    }
}