* {
  padding: 0;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
header ul {
  display: flex;
}
header ul li {
  padding-left: 20px;
}
header ul li a{
  color: rgb(255, 251, 0);
  font-size: 18px;
  padding: 8px;
  border-radius: 4px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
header ul li a:hover{
  color: black;
  background-color: rgb(255, 251, 0);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
#page-logo a {
  font-size: 50px;
  font-family: "Oleo Script", sans-serif;
  color: rgb(233, 229, 32);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #000;
}

footer {
  background-color: rgb(0, 0, 0);
}
footer ul{
  display: flex;
  justify-content: center;
}
footer li{
  width: 30px;
  height: 30px;
  margin: 0 20px;
  padding: 20px 0;
}
footer img{
  height: 100%;
  width: 100%;
}
