.socials {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid #fff;
}
.socials > .icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.5s;
}
.socials > .icon:hover {
    background-color: #fff;
    color: var(--primary-color);
}
