.social-media-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center align all rows */
    gap: 10px; /* Add spacing between icons */
    max-width: 500px; /* Optional: Limit container width */
    margin: 0 auto; /* Center the container on the page */
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1c2833;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: #f8f9f9;
    transform: scale(1.2); /* Subtle zoom on hover */
}

.social-icon svg {
    fill: #f8f9f9;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: #1c2833;
}
