:root { /* it is advised to include root in all .css entries for simplicity*/
    --major-color: #00ff00;
    --minor-color: #00FF7F;
    --highlight-color: #16E2F5;
    --faded-color: #004400;
    --night-color: #040410;
    --error-color: #FF0000;
    color: var(--minor-color);
}

#main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border: white 1px solid;
  width: 80vw;
  height: fit-content;
  padding: 4%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--night-color);
  color: var(--minor-color);
  font-family: mono;
  align-items: center;
  text-align: center;
  overflow: scroll;
}

.subdata  {
  font-size: 10px;
  opacity: 80%;
}

.embeddiv {
  border-top: 1px white solid;
  height: fit-content;
  padding: 1vh;
  margin: 1vh;
}

.cutdiv {
  border-top: 1px rgba(255, 255, 255, 0.5) dashed;
  border-bottom: 1px rgba(255, 255, 255, 0.5) dashed;
  border-left: 1px white solid;
  border-right: 1px white solid;
  height: fit-content;
}

.slashdiv {
  border-left: 1px rgba(255, 255, 255, 0.5) dashed;
  border-right: 1px rgba(255, 255, 255, 0.5) dashed;
  border-top: 1px white solid;
  border-bottom: 1px white solid;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 1vh;
  padding: 1vh;
}


/* animations v v v */
@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%;
  }
}