* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: monospace;
  list-style: none;
}
body {
  background-color: rgb(22, 21, 21);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  justify-content: center;
  margin-top: 5%;
}
ul {
  background: rgb(255, 247, 0);
  border-radius: 10px !important;
}

li {
  color: #fff;
  background: rgb(255, 247, 0);
  display: block;
  float: left;
  padding: 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.5s;
}

.middle {
  padding: 0 3.4px;
}
li:last-child {
  border-radius: 0 10px 10px 0 !important;
}
li:first-child {
  border-radius: 10px 0 0 10px !important;
}
ul.dropdown > li {
  border-radius: 0 !important;
}
li a {
  color: #000000;
}

li:hover {
  background: rgb(205, 179, 8);
  cursor: pointer;
}

ul li ul {
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
}

ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width: 100%;
}

.dropdown {
  text-align: center;
  border-radius: none !important;
}

.MDJAminDiv {
  z-index: 4444;
  position: fixed;
  bottom: 5%;
  left: 2%;
}

.MDJAmin {
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 247, 0, 0.707);
  border-top: 1px dashed rgba(255, 247, 0, 0.707);
  /* border-bottom: 1px dashed rgb(44, 44, 44); */
  /* border-top: 1px dashed rgb(44, 44, 44); */
  padding: 4px 0;
  /* color: rgba(44, 44, 44, 0.525); */
  color: rgba(204, 204, 204, 0.414);
  font-family: monospace;
  font-style: italic;
  font-size: 1em;
  transition: all 0.5s;
}

.MDJAmin:hover {
  /* color: #000000; */
  color: rgb(255, 247, 0);
}
