
/*2 column time!*/
.flex_design{
  display: flex;
}

/*Header*/
header{
  border: 2px solid white;
  margin: 15px;
  padding: 20px;
  background-color: #FD8B8B;
  background-image: url("http://www.shodor.org/~clairet/myTemplate/pics/Puppy.jpg");
  background-repeat: no-repeat;
  background-position: right; 
  background-size: 240px 160px;
  font-family: "Times New Roman", Georgia;
  font-size: 20px;
}

header p {
	display: none;
}

/*Navigation*/
nav {
  border: 2px solid white;
  width: 25%;
  margin: 15px;
  padding: 5px;
  background-color: #FD8B8B;
  font-family: "Times New Roman", Georgia;
  font-size: 20px;
}
ul {
  list-style-type: none;
}

/*Main*/
main {
  border: 2px solid white;
  width: 75%;
  margin: 15px;
  padding: 20px;
  background-color: #FD8B8B;
  font-family: Georgia, "Times New Roman";
  font-size: 17px;
  overflow: auto; 
  height: 550px;

}

/*Background of the page*/
body {
background-color: #ABD0A2;
}

/*Footer*/
footer {
  border: 2px solid white;
  margin: 15px;
  padding: 6px;
  background-color: #FD8B8B;
  font-family: "Times New Roman", Geogia;
  font-size: 20px;
}