* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  transition: all 0.5s;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.a-mode {
  background-color: rgb(255, 0, 0);
  color: rgb(255, 0, 0);
}

body.m-mode {
  background-color: rgb(12, 128, 223);
  color: rgb(12, 128, 223);
}

#toggleBtn {
  font-size: 4em;
  text-shadow: 0px 0px 20px #ffffffa4;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

.MDJAmin {
  text-decoration: none;
  border-bottom: 1px dashed rgb(204, 204, 204);
  border-top: 1px dashed rgb(204, 204, 204);
  /* 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: 1.3em;
  transition: all 0.5s;
}

.MDJAmin:hover {
  /* color: #000000; */
  color: white;
}
