.project-list {
    margin-top: 2rem;
}

.project-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;

    margin: 0.5rem 0;
    padding: 0.5rem 1.5rem;

    background: hsl(0, 0%, 20%);
    border: hsl(0, 0%, 30%) solid 3px;

    color: white;
    text-decoration: none;
}

.project-container:hover {
    border-color: hsl(0, 0%, 40%);
}

.project-container img {
    width: 12rem;
    height: 8rem;
}


@media (max-width: 650px) {
    .project-container {
        flex-direction: column;
    }

    .project-container h2 {
        text-align: center;
        margin: -1rem 0 0.25rem 0;
    }

    .project-container img {
    width: 18rem;
    height: 12rem;
    }
}

@media (max-width: 650px) {
    .project-container img {
    width: 12rem;
    height: 8rem;
    }
}