#ContactForm {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0;
}

.contactField {
    height:50px;
    padding-left:20px;
    border-radius:10px;
    font-size:14px;
    border:none;
    outline:none;
    background-color:#f0f0f0;
    margin-bottom:10px;
}

.contactFieldWide {
    width:100%;
}

.contactFieldMedium {
    width:calc(50% - 5px);
}

#zip {
    border-radius: 10px 0 0 10px;
}

#street {
    border-radius: 0px 10px 10px 0px;
}

#ContactForm #commentCont {
    width:100%;
    border-radius:10px;
    border:none;
    overflow:hidden;
    position:relative;
    height:250px;
    background-color:#f0f0f0;
    margin-bottom:10px;
}

#ContactForm #commentCont textarea {
    width:calc(100% - 40px);
    height:calc(100% - 40px);
    top:20px;
    left:20px;
    position:relative;
    resize:none;
    border:none;
    outline:none;
    background-color:#f0f0f0;
    font-size:14px;
}

#submit {
    width:100px;
    height:50px;
    background:#f0f0f0;
    border:none;
    border-radius:10px;
    margin-top:10px;
	cursor:pointer;
}

#submit:hover {
	background-color:#c6c6c6;
	outline:none;
}

#StartButton {
    display:flex;
    width:200px;
    height:50px;
    background:#f0f0f0;
    border:none;
    border-radius:10px;
	cursor:pointer;
	outline:none;
    color:#000000;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size:14px;
}

#StartButton:hover {
	background-color:#c6c6c6;
	outline:none;
}