body {
    margin: 0;
    padding: 0;
    text-align: center;
    background-image:  url(images/beach_night_sea_sky.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: sans-serif;
}

.contact-titel {
    margin: 100px 0 0 0 ;
    color: white;
    text-transform: uppercase;
    transition: all 4s ease-in-out;

}

.contact-titel h1 {
    font-size: 32px;
    line-height: 10px;
}


.contact-titel h2 {
    font-size: 16px;
}



form {
    margin: 50px 0 0 0 ;
    transition: all 0.5s ease-in-out;
}

.form-control {
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: white;
    font-size: 18px;
    margin: 0 0 16px 0;

}

input {
    height: 45px;
}

select {
    border: 1px solid gray;
    padding: 1.4rem;
    background: transparent;
    color: white;
    cursor: pointer;
}

form .submit {
    background: orange;
    border-color: transparent;
    color: white;
    font-size: 20px;
    height: 50px;
    margin: 20px 0 0 0;
}

form .submit:hover {
    background: #FF7518;
    transition: all 0.2s ease-out;
    cursor: pointer;
    letter-spacing: 2px;
}

