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