body{
  background-color: #1C1F09;
  color: #efffc6;
}

#mghText{
  color: #ffffff;
}

a{
  color: #57ABFF;
}

#randomQuoteText{
  color: #ffffff;
  word-spacing: normal;
  letter-spacing: normal;
  font-size: 18px;
}

#title-div{
  background-color: #194c268d;
  border-radius: 20px;
  border: 1px solid #194c26 !important;
}

#navButton{
  background-color: black;
}

/* Dropdown Button */
.dropbtn {
  background-color:#98c3ee;
  color: #000000;
  text-decoration:none;
  padding: 7px;
  border-radius: 20px;
  
  font-size: 16px;
  border: 1px solid rgb(0, 63, 52);
}

/* The container <div> - needed to position the dropdown content */
.dropdown, .menuButton {
  position: relative;
  display: inline;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #deffdd;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 1px 1px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #98c3ee;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #98c3ee;}