.case-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.case-item {
    border: 1px solid #2b9c9cc2;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    margin: 30px;
    width: 200px;
    height: 150px;
}
.case-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.case-img {
    margin-top: 20px;
    width: 100px;

}

.case-text {
    font-family: 'Open Sans', sans-serif;
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #216b6b;
    text-align: center;
    padding: 10px 20px;
}

.case-text:hover {
    font-weight: 800;
} 