/* Dropdown Button */
.dropbtn {
  width: 240px;
  font-family: Courier, serif;
  text-decoration: none; /*To remove the underline for hyperlink */
  color: MintCream;  /*Set the color of the texts */
  background-color: #1F5887; /*color each li element separately */
  font-size: 1.75em;
  font-weight: 900;
  text-align: center;
  display: block;
  padding: .5em;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: DarkSlateGray;
  color: Yellow;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  clear: both;
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: CadetBlue;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: Yellow;
  font-family: sans-serif;
  font-size: 1.5em;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown a:hover {background-color: DarkOliveGreen;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display: block;}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 10px 8px 10px 16px;
  text-decoration: none;
  font-size: 1.5em;
  font-family: sans-serif;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
