.social-icons {
    display: flex;
    justify-content: center;  /* Aligns the items horizontally at the center */
    gap: 20px;                /* Adds spacing between the icons (adjust as needed) */
}

.social-icon {
    font-size: 24px;           /* Adjust size of the icons */
    color: #000;               /* Set icon color */
}

.social-icon:hover {
    color: #0073e6;           /* Change color on hover (optional) */
}