* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
}
/* Style the header links */
.header a {
  float: center;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* 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;
  width: 224px;
  height: 63px;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  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;
  }
}

/*End of code for header



/* Start of Footer code */

.footer a:hover {
  color: #20c997;
  text-decoration: underline;
}

/* Style the active/current link*/


/* Float the link section to the right */
.footer-center {
  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) {
  .footer a {
    float:right;
    display: block;
    text-align: center;
  }
  .footer-center {
    float: none;
  }
}


/* Style the header links */
.footer {
  align-items: center;
  text-align: center;
  bottom: 0;
  width: 100%;
  background: black;
  margin-left:auto;
  margin-right:auto;
  margin-top:2em;
}

.footer a {
  float: center;
  text-align: center;
  color: #79c79A;
  text-align: center;
  text-decoration: white;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
  border-radius: 4px;
  
}

.footer p {
align-items: center;
text-align: center;
background-color: black;
color: white;

}

footer div {
  align-items: center;
  text-align: center;
  background-color: black;


}