.contact-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;

    .inner-contact-box {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 20%;
        margin-right: 20%;
        background-color: #1e1e1e;
        border: solid white;
        border-radius: 5px;
        width: fit-content;

        article {
            justify-content: center;

            a {
                display: flex;
                flex-wrap: wrap;
                flex-direction: column;
                align-items: center;
                padding: 10px;
                font-size: 18px;
                flex-grow: 2;

                &:active {
                    background-color: #2e2e2e;
                    border-radius: 2.5px;
                }
            }
        }
    }
}