#contact-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;

    img {
        height: 100%;
    }

    form, label, input, textarea {
        display: block;
        width: 100%;
        font-size: 1em;
    }

    input, textarea {
        margin-bottom: 1em;
        padding: 0.25em;
    }

    textarea {
        height: 5em;
    }

    form {
        flex-basis: 50%;
    }

    button {
        border: none;
        font-size: 1em;
        float: right;
    }
}
