
.projectLinkImg {
    width:100px;
}
.projectLinks {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.projectLinkImg:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

@media (max-width: 750px) {
    .projectLinks {
        display: flex;
        flex-direction: row;
        padding: 10px 0 0 10px;
    }
    .projectLinkImg {
        width:75px;
    }
}