:root {
  --main-website-color: #AADAEF;
  --timing: 80s;
}

body {
  background: #111;
  font-family: monospace;
  font-size: 12.8px;
  color: #bbb;
  overflow-x: hidden;
}

a,
a:active,
a:hover,
a:visited {
  text-decoration: none;
}

a {
  color: white;
}

a:visited {
  color: #bbb;
}

.rainbow {
  background-image: linear-gradient(to right, #FFADAD, 
                                              #FFD6A5,
											  #FDFFB6,
											  #CAFFBF,
											  #9BF6FF,
											  #A0C4FF,
											  #BDB2FF,
											  #FFC6FF);
  color: transparent !important;
  background-clip: text;
}

.rainbow-name {
  background-image: linear-gradient(to right, #FFADAD 50%, 
  /* I know this solution is really hacky */  #FFD6A5,
  /* but I didn't know what to do lolllll */  #FDFFB6,
  /* 50% - beginning,        75% - ending */  #CAFFBF,
											  #9BF6FF,
											  #A0C4FF,
											  #BDB2FF,
											  #FFC6FF 75%);
  color: transparent !important;
  background-clip: text;
}

.main {
  background: #222;
  border: 3px solid #080808;
	
  width: 960px;
  height: 400px;
	
  display: flex;
  flex-direction: row;
	
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  
  margin: 0;
}

.left,
.right {
/*background: linear-gradient(to bottom, transparent 0, #444 50%, transparent 100%);
  background-position: center;
  background-attachment: fixed;
  background-size: 3px 300px;*/
  
  width: 600px;
  height: 400px;
  margin: 8px;
}

.left {
  border-image: linear-gradient(to bottom, transparent 0, #444 50%, transparent 100%) 1 100%;
  border-right: 2.4px solid transparent;
}

.right {
  margin-left: 0;
}

#command-line {
  /* Input forces it's own style onto everything so these are used to re-set everything */
	
  margin: 0;
  border: 0;
	
  font-family: monospace;
  font-size: 12.8px;
	
  background: #222;
  color: #bbb;
  
  width: 315px;
}

.right-text,
#tilde_ring {
  float: left;
}

.profile {
  border: 1.6px solid #666;
  pointer-events: none;
  height: 128px;
}

.profile,
.profile-text {
  display: inline;
}

.profile-text,
.profile-text > h3 {
  position: relative;
  top: -8px;
}

.background-container {
  width: 100%;
  height: 100%;
  z-index: -10;
  margin: unset;
  pointer-events: none;
}

.right-text-qc {
  text-align: left;
  display: table;
}

.marq span,
.moon,
.credit,
.umi {
  position: absolute;
  font-size: 16px;
}

.marq span {
  width: 100%;
  color: #888;
  margin: 0;
  text-align: center;
  transform: translateX(100%);
  animation: scroll-left var(--timing) linear infinite;
  z-index: -8;
}

.moon {
  top: -20px;
  right: 20px;
  z-index: -9;
  line-height: 1;
  color: #444;
}

.credit {
  margin: 10px;
  left: 0;
  bottom: 20px;
}

.umi {
  white-space: nowrap;
  display: flex;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #888;
  animation: scroll-second var(--timing) linear infinite;
}

.second-set {
  animation-delay: 6s;
  /* <3 I hate CSS <3 */
}

.tilde_ring_link {
  color: white !important;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%); /* Starts off-screen to the right */
  }
  100% {
    transform: translateX(-100%); /* Moves off-screen to the left */
  }
}

@keyframes scroll-second {
  0% {
    transform: translateX(0); /* Starts off-screen to the right */
  }
  100% {
    transform: translateX(-100%); /* Moves off-screen to the left */
  }
}
