.c-social-media {
    display: flex;
    gap: var(--fs--1);
}

.c-social-media__item {
    background-color: var(--color-1);
    border-radius: 50%;
    height: 40px;
    transition: all 500ms;
    width: 40px;
}

.c-social-media__link {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.c-social-media__icon {
    color: white;
    height: 65%;
    width: 65%;
}

.c-social-media__item:hover {
    transform: scale(1.15,1.15);
}

@media only screen and (max-width: 800px) {
    .c-social-media--none {
        display: none;
    }
}

@media only screen and (max-width: 600px) {

    .c-social-media {
        gap: var(--fs--3);
        justify-self: flex-end;
    }

    .c-social-media__item {
        height: 30px;
        width: 30px;
    }

}