* {
  border: 0;
  margin: 0;
  padding: 0;

  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #F9F2F2;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  justify-content: center;
  align-items: center;


}

header h1 {
  margin-left: auto;
  margin-right: auto;
  color: #2B3026;

}

.active-page {
  background-color: #F0D34B;



}

.active-page a {

  color: #1e1206 !important;
  font-weight: 600;


}


#headerlinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  margin-left: auto;

}

#headerlinks a {
  background-color: #2B3026;
  color: #F0F5E8;
  padding: 5px 10px;
  text-decoration: none;
}

#headerlinks a:hover {
  text-decoration: underline;
  color: #F0D34B;
}

#signup {
  margin-right: 20px;
}

#nav-banner {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}

nav {

  flex: 20%;
  margin-right: 20px;
}


nav ul li {
  list-style: none;

  background-color: #2B3026;
  display: block;

}

nav ul li:not(:last-child) {
  margin-bottom: 10px;

}



nav a,
header a {
  text-decoration: none;
  color: #F0F5E8;
  width: 100%;
  display: block;
}

nav ul li a {
  padding: 10px 10px;
}


nav ul li a:hover {

  color: #1e1206 !important;
  background-color: #ae9420;

}

#banner {
  flex: 85%;
  background-color: #F0D34B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1c1a17;
  font-size: 40px;
  text-align: center;
}

#banner h2:last-child {
  color: #894B1A;
}

#banner h2:first-child {
  color: #201308;
}

main {
  height: auto;
  min-height: 500px;
  padding: 20px 20px;
  text-align: center;

}


#product-list ul {
  display: flex;
  width: 80%;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}

#product-list ul li {
  width: 47%;
  border: 4px solid #978221;
  list-style-type: none;
  padding: 10px 10px;
  margin-bottom: 20px;
}

#product-list ul li:hover {
  border: solid 4px #122018;
  opacity: 0.8;
}

#product-list ul li a {
  cursor: pointer;
  width: 100%;
  position: relative;
  text-decoration: none;
  color: #543F3F;
}

footer {
  display: flex;
  height: 100px;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #2B3026;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: flex-start;
  align-items: center;
}

#footerlinks a:not(:last-child) {

  margin-right: 50px;

}

#graytan {
  background-color: beige;

}

/*
#workandwalk {
 background-color: aquamarine;

}
*/
#footerlinks {
  margin-left: auto;
  padding-right: 50px;
}


#footerlinks a {
  color: #F0F5E8;
  text-decoration: none;

}

#footerlinks a:hover {
  text-decoration: underline;
  color: #F0D34B;
}

/*#footer-logo img {
 margin-left: 20px;
 width: 70px;
}*/

section ul li a img {

  width: 200px;


}

#return-page {
  width:80%;
  overflow: auto;
  margin:0 auto;
}

pre {
  white-space: pre-wrap;
    word-break: keep-all
}

#mobile-menu {
  display: none;

}


@media only screen and (max-width: 600px) {

  header h1,
  #wishlist {
    display: none;
  }

  /* #mobile-menu {
  display: flex;
  font-size: 30px;
 }*/

  #headerlinks {
    padding-right: 0;
  }

  #logo {

    margin-right: auto;
  }

  #nav-banner {
    flex-direction: column;
  }

  nav {
    margin-right: 0;
    margin-bottom: 20px;

  }


  #banner {
    font-size: 30px;
    padding: 20px 0;
  }

  /* #footer-logo {
  display: none;
 }*/

  #footerlinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


  }

  #footerlinks a {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }

  section ul li a img {

    width: 100px;


  }
}