body {
  background-color: black;
  color: white;
}

.maintitle {
  font-family: "Courier New", bold;
  font-size: 80px;
}

.secondtitle {
  font-family: "Courier New", bold;
  font-size: 40px;
}

.hh2 {
  font-family: "Courier New", bold;
  font-size: 30px;
}

.button {
  background-color: white;
  border: 2px solid black;
  color: black;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: black;
  color: white;
  border: 2px solid white;
}

.rules {
  color: #BFAC60;
  font-size: 20px;
  font-family: Verdana;
}

.hide-dark {
  color: black;
}

.levelnumber {
  position: fixed;
  font-size: 30px;
  font-family: "Courier New", bold;
}


#scroll-container {
  background-color: white;
  overflow: hidden;
}

#scroll-text {
  
  color: black;
  
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
