.si svg {
    height: 25px;
    width: auto;
    fill: white;
}

.svg-icon {
    border: 1px solid white;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

a:hover .svg-icon {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.svg-icon,
.svg-icon path {
    transition: all .25s ease-in-out;
}

.si a:hover svg {
    fill: black;
}