.project-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    border-radius: 20%;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
}

.project {
    width: 160px;
    flex-shrink: 0;
    margin: 0 10px;
    height: 160px;
    border-radius: 20%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: crosshair;
    left: 0;
    -webkit-transition: .4s;
    transition: .4s;
    top: 0;
    position: relative;
    z-index: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
    border: 1px solid #87664e;
    padding: 6px;
}

.project:hover {
    box-shadow: 4px 6px 2px 1px rgba(87, 84, 76, 0.2);
}

.project-name {
    position: absolute;
    width: 180px;
    text-align: center;
    left: 50%;
    top: 100%;
    font-size: 18px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 500;
    color: #516E91;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.8);
    transform: translateX(-50%) translateY(0) scale(0.8);
    z-index: -1;
    text-shadow: 8px 8px 8px rgb(170, 168, 168);
}

@media (max-width: 768px) {
    .project-name {
        display: none;
    }
}

.project:hover {
    z-index: 1;
}

.project:hover>.project-name {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(10px) scale(1);
    transform: translateX(-50%) translateY(10px) scale(1);
}

.project.is-selected {
    z-index: 1;
}

.project.is-expanded>.project-img {
    border-radius: 0;
}

.project.is-expanded>.project-name {
    display: none;
}

.showcase {
    width: 100%;
    height: 36vh;
    max-width: 1300px;
    text-align: center;
    overflow: hidden;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: -25px;
}