header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  /**/
  position: absolute;
  width: 100%;
  box-sizing: border-box;
}
body {
  font-family: "Quicksand", sans-serif;
  margin: 0px;
}
ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  /* display: flex;*/
}
#page-logo a {
  font-family: "Oleo Script", sans-serif;
  font-size: 50px;
  color: rgb(245, 243, 160);
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
}
header ul {
  display: flex;
}

header li {
  margin-left: 20px;
}
header a {
  text-decoration: none;
  color: rgb(255, 243, 0);
  font-size: 20px;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 12px;
}
header nav a:hover {
  background-color: rgb(255, 243, 0);
  color: rgb(77, 77, 77);
}
footer {
  background: linear-gradient(70deg, rgb(25,25,25),rgb(63, 50, 50));
   padding: 40px;
}
footer ul {
  display: flex;
  justify-content: center;
}
footer li {
  height: 80px;
  width: 80px;
  margin: 0 50px;
 
}
footer img {
  height: 100%;
  width: 100%;
}