.contentContactBody{
    margin: auto;
    display: grid;

}

.ContactHeader {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". identifiertext ."
}

.ContactHeader h4 {
    grid-area: identifiertext;
    padding-top: 100px;
    padding-bottom: 5px;
    font-size: 22px;
    color: #213878;
    font-weight: bold;
    margin: auto;
    font-family: Century Gothic, Serif;
}

.size2 {
		display: none;
	}

.contactboxContatiner {
    max-width: 960px;
    margin: auto;
}

@media screen and (max-width: 1280px){

	.ContactHeader {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "identifiertext"
}

	}

@media screen and (max-width: 600px){
	.size1 {
		display: none;
	}

	.size2 {
		display: inline;
	}

}