.social-icons-container {
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


