/* 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." */
html {
  height: 100%;
}

body {
  /*background-image: url(/tileGrid.png);*/
  font-family: Verdana;
  color: white;
  text-align: center;
  background-position: center;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  color: lightgreen;
}

#box {
  background-color: black;
  border: 4px double;
  border-color: blue;
  width: 50%;
  height: auto;
  margin: auto;
}

#box-list {
  text-align: left;
  padding: 0 5% 0 8%; /*top, right, bottom, left*/
}

#everything {
  height: 100%;
  overflow: scroll;
  z-index: 3
}

#background {
  background-image: url(/tileGrid.png);
  width: 120%;
  height: 150%;
  position: absolute;
  left: -16px;
  z-index: -2;
  
  animation: bgScroll 2s linear infinite;
}

@keyframes bgScroll {
  0% {
    transform: translate(0, -372px);
  }
  100% {
    transform: translate(0, -186px);
  }
}

#evilAndIntimidatingCircle
{
  background-image: url(/circle.png);
  background-size: 800px 800px;
  width: 800px;
  height: 800px;
  position: absolute;
  left: 45%;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
  
  animation: circleSpin 8s linear infinite;
}

@keyframes circleSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#sonicTrianglesTop {
  background-image: url(/triangles.png);
  background-repeat: repeat-x;
  width: 150%;
  height: 108px;
  position: absolute;
  left: -31px;
  transform: rotate(180deg);
  
  animation: triangleSlideTop 0.5s linear infinite;
}

#sonicTrianglesBottom {
  background-image: url(/triangles.png);
  background-repeat: repeat-x;
  width: 150%;
  height: 108px;
  position: absolute;
  left: -31px;
  bottom: 0%;
  
  animation: triangleSlideBottom 0.5s linear infinite;
}

@keyframes triangleSlideTop {
  0% {
    translate: -31px 0;
  }
  100% {
    translate: 0 0;
  }
}

@keyframes triangleSlideBottom {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -31px 0;
  }
}

#serverseGraphicsHolder {
  opacity: 0.4;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  bottom: 2%;
  
  animation: serverseGraphicsSlideIn 2s ease-out 1;
}

@keyframes serverseGraphicsSlideIn {
  0% {
    transform: translate(200%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

#extem {
  background-image: url(/simpleExtem.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -3%;
  bottom: 30px;
  z-index: -5;
}

#ring {
  background-image: url(/simpleRing.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 11%;
  top: 9%;
  z-index: -6;
  
  animation: ringBob 3s ease-in-out infinite;
}

@keyframes ringBob {
  0% {
    transform: translate(0, -10px);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, -10px);
  }
}

#momentumCharRender {
  background-color: transparent;
  width: 850px;
  height: 850px;
  position: absolute;
  right: 2%;
  top: 50%;
  translate: 0 -50%;
  z-index: 0;
  align-content: center;
  justify-content: center;
  
}

#evilTriangleHolder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-10deg);
  z-index: -2;
}

#evilTrianglesTop {
  background-image: url(/backTriangles.png);
  background-repeat: repeat-x;
  width: 150%;
  height: 170px;
  position: absolute;
  left: -31px;
  top: -80px;
  transform: rotate(180deg);
  
  animation: triangleSlideBottom 0.5s linear infinite;
}

#evilTrianglesBottom {
  background-image: url(/backTriangles.png);
  background-repeat: repeat-x;
  width: 150%;
  height: 170px;
  position: absolute;
  left: -31px;
  bottom: -80px;
  
  animation: triangleSlideTop 0.5s linear infinite;
}