.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 20% auto 0;
    gap: 20px;
    padding: 0 20px;
}

.item {
    border-radius: 100%;
    /*border: 1px solid #ddd;*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 100%;
}

.item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .content {
        max-width: 100%;
        margin: 20px auto;
        justify-content: center;
        flex-direction: column;
    }
}