.social-icons {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem; /* 18px */
    color: #444;
    border-radius: 4px;
    background-color: #eee;
    transition: background-color 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #ccc;
}
