
/* 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;

}

.selfie {
background-repeat : no-repeat;
float: right;
margin-top: 10px;
position: relative;

}

/* paragraph styles */

section {
	margin-top: 100px;
	padding: 30px;
	line-height: normal;
}
p {
	margin: 3px;
	padding: 3px;
}

.welcome  {
	font-family: 'Roboto', sans-serif;
	font-size: 50px;
	font-weight: 400;
	color: #151F2C;

}

.namecaps {
	font-family: 'Roboto', sans-serif;
	font-size: 75px;
	font-weight: 700;
	color: #151F2C;
}

.gd {
	font-family: 'Roboto', sans-serif;
	font-size: 30px;
	font-weight: 400;
	color: #151F2C;
}

/* 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;
}

