
/* \/ \/ PRE-STARTUP ANIMATIONS pretty good right now only change if doing revisions */

@keyframes BGFADEIN {
  0% {opacity: 10%;}
  100% {opacity: 80%;}
}

@keyframes DEBRIS {
  0% {transform: translate(15%, 0%);}
    25% {transform: translate(4%, -2%);}
    50% {transform: translate(-7%, 12%);}
    75% {transform: translate(14%, -7%);}
    100% {transform: translate(-15%, 1%);}
}

@keyframes SPIN {
  0% { transform: rotate(0turn) }
  100% { transform: rotate(1turn) }
}

@keyframes RUMBLE {
    0% {transform: translate(1%, 1%);}
    25% {transform: translate(0%, -1%);}
    50% {transform: translate(-1%, 1%);}
    75% {transform: translate(1%, 0%);}
    100% {transform: translate(-1%, 1%);}
}

@keyframes DISCFALL {
  0% {transform: rotate(0.1turn);
      opacity: 100%;
      width: 100vh;
      height: 100vh;
  }
  20% {transform: rotate(0.2turn);
      opacity: 90%;
      width: 90vh;
      height: 90vh;
  }
  40% {transform: rotate(0.4turn);
      opacity: 70%;
      width: 70vh;
      height: 70vh;
  }
  60% { transform: rotate(0.8turn);
      opacity: 40%;
      width: 50vh;
      height: 50vh;
  }
  80% {transform: rotate(1.6turn);
      opacity: 10%;
      width: 20vh;
      height: 20vh;
  }
  100% {transform: rotate(1.6turn); 
      opacity: 0%;
      width: 0vh;
      height: 0vh;
  }
}

@keyframes CORESHRINK {
  0% {
      width: 60vh;
      height: 60vh;
  }
  20% {
      width: 50vh;
      height: 50vh;
  }
  40% {
      width: 35vh;
      height: 35vh;
  }
  60% {
      width: 10vh;
      height: 10vh;
  }
  80% {
      width: 5vh;
      height: 5vh;
  }
  100% { 
      width: 5vh;
      height: 5vh;
  }
}
/* /\ /\ PRE-STARTUP ANIMATIONS pretty good right now only change if doing revisions */

/* \/ \/ POST-STARTUP ANIMATIONS */

@keyframes FLICKER {
  0% {
      opacity: 0%;
  }
  1% {
      opacity: 75%;
  }
  2% {
      opacity: 30%;
  }
  3% {
      opacity: 80%;
  }
  6% {
      opacity: 20%;
  }
  7% {
      opacity: 26%;
  }
  8% {
      opacity: 2%;
  }
  9% {
      opacity: 57%;
  }
  15% {
      opacity: 29%;
  }
  50% {
      opacity: 90%;
  }
  100% {
      opacity: 100%;
  }
}

/* /\ /\ POST-STARTUP ANIMATIONS */

.CenterText {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  font-size: 2em;
  color: red;
  justify-content: center;
  align-items: center;
  position: fixed;
  overflow: hidden;
}

#debris {
  top: -250vh;
  left: -250vw;
  height: 250vw;
  width: 250vw;
  display: flex;
  position: fixed;
  overflow-y: hidden;
  z-index: -10;
  opacity: 20%;
  animation: DEBRIS 240s ease-in-out infinite alternate;
  }

#backdrop {
  top: -50vh;
  left: 0;
  height: 100vw;
  width: 100vw;
  display: flex;
  position: fixed;
  z-index: -10;
  opacity: 10%;
  }

section#void {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.bg {
  display: flex;
  justify-content: center;
  position: absolute;
  animation: RUMBLE 0.1s linear infinite alternate;
  width: 90%;
  height: 90%;
  z-index: 1;
  outline: 200px solid white;
  border-radius: 100%;
}

#core {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vh;
    height: 60vh;
    border-radius: 100%;
    background: Black;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    outline: none;
    animation: none;
}
#photondisc {
  display: flex;
  width: 100vh;
  height: 100vh;
  z-index: 1;
  animation: SPIN 3s linear infinite;
  position: absolute;
}

/* /\ /\ PRE-STARTUP ASSETS pretty good right now only change if doing revisions */

/* post-startup assets blah blah blah you know the deal \/ */

section#home {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  z-index: 0;
  }

#corehighlight {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 6vh;
    height: 6vh;
    background: Transparent;
    color: var(--major-color);
    overflow: hidden;
    position: absolute;
    z-index: 0; 
    outline: 3px solid #00ff00;
    opacity: 0;
    animation: none;
}
#brand {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 8vh;
    height: 4vh;
    background: Transparent;
    overflow: hidden;
    position: relative;
    z-index: 1; 
    outline: 3px solid #00ff00;
    opacity: 0;
    animation: none;
    top: -8vh;
    color: var(--highlight-color);
    font-size: 2vh;
}

.infobox {
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20vh;
    height: 20vh;
    background: Transparent;
    color: var(--minor-color);
    overflow: visible;
    position: absolute;
    z-index: 1;   
}
/* "infoboxbox" i suck so bad at this :sob: */


.linkbox {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 20vh;
    height: 20vh;
    background: Transparent;
    color: var(--minor-color);
    overflow: hidden;
    position: absolute;
    z-index: 0; 
    outline: 3px solid #00ff00;
    border-radius: 100%;
}

.description {
  transform: translate(0%, 8vw);
}


section#ui {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  z-index: 0;
  opacity: 0%;
}

