@import url('/colors.css');
.socials-table {
    margin: 3rem 0;
    margin-left: 50%;
    transform: translateX(-50%);
    color: var(--header-color);
    font-size: 30px;
}

.socials {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 0.3rem;
    color: white;
    width: 80vw;
    padding: 20px;
    padding-left: 40px;
    height: auto;
    background-color: #1C1C1C;
    border-radius: 10px;
}

.socials-title {
    margin-left: 1px;
    padding-bottom: 1px;
    color: var(--header-color);
    font-size: 30px;
}

.socials a {
    text-decoration: none;
    color: white;
    font-size: large;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.socials a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.socials a svg,
.socials a span {
    margin-right: 6px;
}

.social-icon svg {
    fill: white;
}

.socials a::after {
    content: '';
    position: absolute;
    height: 2px;
    left: 0;
    bottom: 0;
    width: 0;
    background: white;
    transition: width .2s;
}

.socials a:hover::after {
    width: 100%;
}