/*body*/
div {
	background: #d5e658;
}

body {
  background-color: #fdeca6;
}

/*Fonts-family*/
h3 {
	font-family: Arial;
}

h1 {
	font-family: Garamond;
}

p {
	font-family: baskerville
}

/*font-size*/

/*font-weight*/

/*line-height*/

/*text-align*/

/*text-decoration*/

/*Menu Button--starts*/
/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #eea757;
  padding: 10px 20px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  border-radius: 10px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #eea757;
  color: black;
}

/* Style the active/current link/
.header a.active {
  background-color: #a4613b;
  color: white;
}*/

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}
/*Menu Button--ends*/

footer {
  clear: both;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: left;
  background: #d5e658;
  padding: 5px 10px;
}