body {
  font-family: "Quicksand",sans-serif;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#page-logo a {
  padding: 10px;
  font-family: "Oleo Script", sans-serif;
  color: rgb(245,243,160);
  font-size: 0.1rem;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgb(0,0,0);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
}

header ul {
  display: flex;
}

header li {
  margin-left: 2rem;
}

header nav a {
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  padding: 12px 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  border-radius: 6px;
}

header img {
  height: 12rem;
}

header nav a:hover {
  color: rgb(60, 60, 60);
  background-color: rgb(221, 221, 221);
}

footer {
  background: linear-gradient(70deg, rgb(24,24,24),rgb(25,29,29));
}

footer ul {
  display: flex;
  justify-content: center;
  padding: 40px;
}

footer li {
  width: 40px;
  height: 40px;
  margin: 0 2.5rem;
}

footer img {
  width: 100%;
  height: 100%;
}

/* Media Queries 
------------------------------------*/
@media (max-width: 48rem) {
  header {
    display:inline-block;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
  }

  #page-logo {
    text-align: center;
  }

  header nav a {
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
    padding: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-radius: 6px;
  }

  header img {
    height: 12rem;
  }

  header ul {
    justify-content: space-between;
  }

  header li {
    margin: 0.5rem 2rem;
  }
  
  footer ul {
    padding: 1.5rem;
  }
  
  footer li {
    width: 2rem;
    height: 2rem;
    margin: 0 2.5rem;
  }

}