body {
  background-color: black;
  color: orange;
  font-family: Arial;
  background-image:url('https://broligarchy.neocities.org/binary.jpg');
  background-repeat:repeat;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%; 
  text-shadow: 0 0 5px rgba(200, 200, 255, 0.8); 
  animation: scroll-left 10s linear infinite;
}

.glow-text {
  color: rgb(255, 190, 45); 
  font-size: 3em;
  padding-left: 20%;
  font-family: Georgia;
  text-shadow: 0 0 10px rgba(200, 200, 255, 0.8); 
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


#wrapper { width: 50%; margin: auto; }