body {
  background-color: #000036;
  color: white;
  font-family: Trebuchet, sans-serif;
  font-style: normal;
  letter-spacing: -1px;
}

.game {
  letter-spacing: 0px;
  padding: 20px 20px;
}

#NOA {
  background-color: #360000;
  font-family: "Times New Roman", serif;
}

#Others {
  background-color: white;
  color: black;
}

#Credits-neocities {
  position: fixed;
  bottom: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0000dd;
}

ul li a{
  float: left;
  display: block;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 20px 20px;
  text-decoration: none;
}

ul li img {
  float: right;
  background-color: #000;
  padding: 0px 0px;
}

ul li a:hover {
  background-color: #00ffff;
  color: black;
}

.dropdown {
  display: block;
  position: relative;
}

.dropdown-contents {
  border-radius: 10px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  color: blue;
  letter-spacing: 1px;
  max-width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.9);
  padding: 5px 15px;
}

.dropdown:hover .dropdown-contents {
  display: block;
}