

/* For Mobile under 601px */

/* The container <div> - needed to position the dropdown content */
.storynav {
  position: fixed;
  display: inline-block;
  background-color: #254D17;
  opacity: 0.9;
  border-radius: 9px;
  min-width: 160px;
  padding: 10px 0 10px 10px;
  top: 50px;
  right: 80px;
  color: #E4E4E4;
  font-family: 'proxima-nova', helvetica, sans-serif;
  font-size: 2.2rem;
  text-decoration: none;
  z-index: 99;
}
/* Dropdown Content (Hidden by Default) */
.storynav-content {
  display: none;
  position: absolute;
  background-color: #254D17;
  opacity: 1;
  border-radius: 9px;
  border-radius: 9px;
  width: 939px;
  margin: 22px 0 0 -650px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,1.2);
  z-index: 99;
}

/* Links inside the dropdown */
.storynav-content a {
  display: block;
  border-radius: 9px;
  color: #E4E4E4;
  font-family: 'proxima-nova', helvetica, sans-serif;
  padding: 26px 26px;
  font-size: 2.8rem;
  text-align: center;
  text-decoration: none;
}

/* For Desktop */
@media only screen and (min-device-width: 768px){
.storynav {
  top: 26px;
  right: 30px;
  font-size: 1.3em;
}
.storynav-content {
  width: 290px;
  margin-top: 5px;
  margin-left: -95px;
}
.storynav-content a {
  padding: 10px 10px;
  font-size: 1.4rem;
}}

/* Change color of dropdown links on hover */
.storynav-content a:hover {background-color: #552200;}

/* Show the dropdown menu on hover */
.storynav:hover .storynav-content {display: block;}

