.project-wrapper {
    display: flex;
    flex-direction: row;
/*    align-content: flex-start;*/
    align-content: center;
/*    flex-grow: 1;*/
    justify-content: center;
    flex-flow: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 0;
    text-align: center;
}

.project {
    position: relative;
    flex: 0 0 27%;
    margin: 2% 1.5%;
    padding: 1.8% 1%;
}

.project img {
    flex-grow: 1;
    max-height: 225px;
    max-width: 225px;
}

.project a img {
    transition: .3s ease;
}

.project a:hover img {
    transform: rotate(3.5deg) scale(1.075);
    transition: .3s ease;
}

.circular {
    border-radius: 100%;
}