li {
    list-style: none;
}

.entry h2 {
    font-weight: 700;
    text-align: center;
    position: relative;
}

.entry h2::before,
.entry h2::after {
    content: '';
    width: 36%;
    border-top: 2px dotted black;
    position: absolute;
    top: 51%;
}

.entry h2::before {
    left: 4%;
}

.entry h2::after {
    right: 4%;
}

.entry .entry-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.entry .entry-content li {
    box-shadow: 10px 10px 21px #333333c7;
    padding: 20px;
    border-radius: 10px;
    width: 22%;
    height: 102px;
    position: relative;
    margin-top: 20px;
}

.entry .entry-content li img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width:700px) {
    .entry .entry-content li {
        width: 47%;
        height: 80px;
    }
    .entry h2::before,
    .entry h2::after {
        width: 20%;
    }
}