/*****************************
 Header
******************************/
.header {
  width: 100%;
  height: 50px;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #FFE066; /* Beefit Yellow */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.header ul {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}

.header li a {
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  background-color: #333;
  text-decoration: none;
}

.menu-content {
  display: none;
  top: 50px;
  left: auto;
  right: 0;
  position: absolute;
  background-color: #FFE066; /* Beefit Yellow */
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.menu-content a {
  color: black;
  padding: 12px 16px;
  text-decoration:none;
  display: block;
}

.show {
   display: block
}

