#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    width: 100%;
    margin-top: 2em;
    margin-bottom: 12em;

    font-size: 2em;
}
#contact .contactLink {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;

    width: 500px;
    padding: 0.2em;

    border: 4px solid white;

    transition: width 500ms cubic-bezier(1, 0.1, 0.1, 1);
}
#contact .contactIcon {
    width: 30px;
}
#contact .contactLink:hover {
    width: 700px;
    background-color: white;
    color: black;
}
#contact .contactLink:hover .contactIcon {
    filter: brightness(0);
}
