.contact-section {
    width: 100vw;
    background-color: rgb(32, 32, 32);
    opacity: 0;
    z-index: 0;
    transition: 1s opacity;
    display: grid;
    grid-template-columns: 1fr 1fr;

    box-sizing: border-box;
    color: white;

    padding: 5vh 5vw;
    font-family: Unageo-Light;

    position: relative;

    font-size: clamp(12px, 1vw, 20px);
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        row-gap: 10vw;
    }

    .contact-pair, .social-networks {
        align-items: center;
        justify-content: center;
    }

    .contact-title {
        text-align: center;
    }
}

.show-contact {
    opacity: 1;
}

.social-networks {
    display: flex;
    flex-direction: column;

    row-gap: 20px;
    overflow: hidden;
    z-index: 0;

    justify-self: center;
}

.social-networks :first-child {
    grid-column: 1 / -1;
}

.social-pair, .contact-pair {
    display: flex;
    flex-direction: row;

    column-gap: 10px;
    text-decoration: inherit;
    color:inherit;

    word-break: break-word;

}

.social-pair:hover, .contact-pair:hover {
    font-weight: 600;
}

.social-title {
    text-justify: center;
    text-align: center;
}

.social-username {
    width: fit-content;
    height: fit-content;
}

.contact {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: fit-content;
    height: fit-content;
}


