/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-family: disposable;
}

.navbarbox {
  background-image:url(/decorations/stars_bg.gif);
  background-position: fixed;
  background-color: rgb(36, 26, 47);
  color: white;
  border: 1px solid #4a0075;
  border-radius: 10px;
  padding:10px;
  width:90%;
  margin-top: 3%;
}
.navbarbutton {
  font-family:coolville;
  font-size: medium;
  background-color: black;
  width:25%;
  color:rgb(254, 244, 255);
  margin: 5px;
  padding:5px;
  border:solid 1px #7900bf;
  border-radius: 5px;
}
.mainbox {
  background-image:url(decorations/stars_bg.gif);
  background-position:fixed;
  font-family: disposable;
  border: 1px solid #4a0075;
  border-radius: 10px;
  margin-top:10px;
  width:95%;
}

.mainboxcontent {
  background-color:black;
  border-radius: 10px;
  margin:5px;
  word-break: break-word;
}

a{
  color:rgb(255, 70, 252);
}

.endlessvoidheader{
  color:transparent;
  text-decoration-line:outline;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(175, 0, 214);
  font-family:cartna;
  font-size: 15vw;
  margin-top:10px;
  background-image:url(/decorations/stars_bg.gif);
  background-position:fixed;
  background-clip: text;
  -webkit-background-clip: text;
}
.navheader{
  color:transparent;
  text-decoration-line:outline;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(175, 0, 214);
  font-family:courier;
  font-size: 10vw;
  margin-top:10px;
  background-image:url(/decorations/stars_bg.gif);
  background-position:fixed;
  background-clip: text;
  -webkit-background-clip: text;
}

.colorshift {
  animation: colorshift 4s linear 0s infinite;
}

@keyframes colorshift {
  from {
    color: #1500ff;
  }
  0% {
    color: #1500ff;
  }
  15% {
    color: #a200ff;
  }
  30% {
    color: #d000ff;
  }
  50% {
    color: #ff00f2;
  }
  65% {
    color: #d000ff;
  }
  80% {
    color: #a200ff;
  }
  100% {
    color: #1500ff;
  }
}
