@media only screen and (max-width: 1400px) {
    #contactform {
        width: calc(100% - 200px);
        height: fit-content;
        flex-direction: row;
        justify-content: space-between;
    }

    #contactfields, #othercontacts {
        margin-top: 100px;
    }

    #contactform h2 {
        position: absolute;
    }

    #contacttitle {
        margin-left: 50vw;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 850px) {
    #contactform {
        position: relative;
        flex-direction: column;
    }
}