/* header styles */
header {
  background-color: #151F2C;
  margin: 0;
  padding: 0;
  width: 100%;
  height : 120px;
 

}

 .logo {
  background-repeat : no-repeat;
  width: 300px;
  float: left;
  margin-top: 35px;

}


header ul {
   margin-top: 50px;
	padding: 0;
  	display: flex;
	list-style-type: none;
	float: right;
}

li {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
}

header a {
  display: block;
  width: 6em;
  margin: 0 25px;
  padding: .5em 1em;
  text-decoration: none;
  text-align: center;
  letter-spacing: .1em;
  color: #fff;
  background-color: #2A3E55;
  border-radius: 8px;

  box-shadow: 0 4px 2px rgba(0,0,0,.5);
   position: relative;
  top: 0px;
  transition:  
    background-color 0.2s,
    top 0.1s, 
    box-shadow 0.1s; 
}

header a:hover, a:focus {
background-color: #88a5c4;
border-color: #88a5c4;

}

 header a:active {
  top: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
}

/* body styles */
body { 
background-image: url(images/watercolor.png);
margin: 0;
padding: 0;
background-repeat : no-repeat;

}

/* h1 & h2 styles */
.contact-title {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #151F2C;
}

h1 {
  margin-top: 30px;
   margin-bottom: 0px;

}
h2{
  margin-top: 0;
}

/* form styles */
.contact-form {
margin-top: 0;
padding:0; 
text-align: center;
position: relative;
}

form {
	margin-top: 50px;
}

.form-control {
	width: 600px;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 1px solid gray;
	color:  #2A3E55;
	font-size: 18px;
	margin-bottom: 16px;
}

input {
  height: 45px;
}

form .submit {
  background: #151F2C;
  border-color: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  height: 50px;
  margin-top: 20px;
}

form .submit:hover {
  background-color:  #619B7A;
  cursor: pointer;
}
/* footer styles */
footer {
position: absolute;
background-color: #2A3E55;
bottom: 0;
width: 100%;
height : 100px;

}

footer a {
	 text-decoration: none;
	 color: #fff;


}

footer ul {
	margin-top: 30px;
	list-style-type: none;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #fff;

}

footer li {
	display: inline-flex;

}

/* footer link styles */

 footer a:hover {
	color:  #88a5c4;

}

footer a:active {
	color: #7ac299;
}
