#contact {
    .content {

        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;

        gap: 2em;

        > div,
        > a {
            width: 21ch;
            margin: auto;
            column-gap: 0.25em;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;


            line-height: 100%;
            padding: 0.33rem;
            color: black;
            font-size: x-large;

            h3 {
                font-size: 1.2em;
                line-height: 1;
            }

            h3+* {
                font-size: 0.9em;
            }

            svg {
                display: inline;
                margin-right: 0.5rem;

                height: 2.1em;
                aspect-ratio: 1;
            }

            svg ~ * {
                display: inline;
            }
        }
    }
}
