:root {
  --bg-color-1: #861650;
  --bg-color-2: #4430ba;
  --bg-color-3: #008456;
  --text-color: white;
  --text-glow-color: #7b8383;
  --link-color: #109e3d;
  --link-glow-color: #00633d;
  --special-color: #e8492c;
  --special-glow-color: #894ad3;
}


body {
  background: url("https://hyphen-lost.neocities.org/rework/bliss-night.png");
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-color);
  font-family: goose;
  font-size: 17.5px;
  text-shadow: 2px 2px 2px #000000;
  overflow: hidden;
  padding: 2.5%;
}

/* building blocks */
box-v {
  display: block;
  width: 35vw;
  max-height: 100vh;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3), inset 0 2px 1px rgba(255, 255, 255, 0.3), inset 0 -2px 1px rgba(0, 0, 0, 0.4);
  /*cursor: pointer; use for aside*/
  border: none;
  overflow: hidden;
}
box-h {
  display: block;
  margin: auto;
  width: 50vw;
  min-height: 30vh;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3), inset 0 2px 1px rgba(255, 255, 255, 0.3), inset 0 -2px 1px rgba(0, 0, 0, 0.4);
  border: none;
}
container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
container-v {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* miscellany */

footer { 
  text-align: center;
  position: fixed; 
  bottom: 10px;
  margin: auto;
  width: 100%;
  z-index: 10;
  font-size: 16px;
}

/* classes */


.rainbow-text {
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet, red, orange, yellow);
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
  background-clip: text;
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient_dir 5s linear infinite;
}

.marquee p {
  width: 100%;
  margin: 0;
  text-align: center;
  transform: translateX(100%);
  animation: scroll-left 20s linear infinite;
}



/* animations */

@keyframes scroll-left {
  0% {transform: translateX(100%);}
  100% {transform: translateX(-100%);}
}
@keyframes gradient_dir {
	0% {background-position: 0% 50%;}
	100% {background-position: 100% 50%;}
}