body{
    margin:0;
    padding:0;
    text-align:center;
    background-color: rgb(0, 0, 255);
/* blue */

    background-size: cover;
    background-position: center;
    font-family:sans-serif;
    
}
.contact-title
{
    margin-top: 100px;
    color: rgb(255, 255, 255);
/* white */
    text-transform: uppercase;
    transition: all 4s ease-in-out;
}
.contact-title h1
{
    font-size: 32px;
    line-height: 10px;
}
.contact-title h2
{
    font-size: 16px;
}
.form
{
    margin-top: 50px;
    transition: all 4s ease-in-out;
}
.form-control
{
     width:600px;
     background-color: rgb(230, 230, 250);
/* Lavender */
     border: none;
     outline: none;
     border-bottom: 1px #708090;
     color: rgb(0,0,0);
/* black */
     font-size: 18px;
     margin-bottom:16px;
}
input
{
    height: 45px;
}
form .submit
{
    background: rgb(224, 255, 255);
/* light cyan */
    border-color: rgb(112, 128, 144) ;
/* slate gray */
    color: rgb(0, 0, 0);
/* black */
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 20px;
}
form .submit:hover
{
    background-color:rgb(0, 255, 255);
/* aqua */
    cursor: pointer;
    
}