*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: RobotoMono-VariableFont_wght, EduSABeginner-VariableFont_wght, SpecialElite-Regular, CaveatBrush-Regular, Trebuchet MS, Courier, Roboto;
  font-size: 14px;
  color: #fff;
  text-align: var(--bs-body-text-align);
  background: url("/pictures/SparlingUniverse.png") fixed repeat;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
  overflow-y:scroll;
  overflow-x:hidden;
}

a, a {
  color: #8E44AD;
}

a:hover, a:active, a:hover, a:active {
  color: #BB8FCE;
}

* {
  cursor: url(https://cur.cursors-4u.net/others/oth-4/oth378.cur), auto !important;
  }

::-webkit-scrollbar { 
    display: none;  /* Chrome Safari */
}

/*container margin top so navbar doesn't hide things*/
.mt-5 {
  margin-top: 70px !important;
}

/*BS Class Colors*/
.bg-dark, .navbar-dark {
  background-color: rgba(0, 0, 0, 0.8)!important; 
}

.bg-light {
  background-color: #fff!important;
  color: #000!important;
}

.bg-success {
  background-color: #5B2C6F!important;
}

.bg-primary {
  background-color: #323042!important;
}

.bg-secondary {
  background-color: #8E44AD!important;
}

.bg-danger {
  background-color: #b13e3e!important;
}

.bg-warning {
  background-color: #e3bd75!important;
}

.bg-info {
  background-color: #3A2C6F!important;
}

.text-primary {
  color: #201e2c!important;
}

.text-secondary {
  color: #5f3372!important;
}

.text-success {
  color: #421f50!important;
}

.text-danger {
  color: #632626!important;
}

.text-warning {
  color: #7c6539!important;
}

.text-info {
  color: #271e46!important;
}

.text-light {
  color: #fff!important;
}

.text-dark {
  color: #000!important;
}

.border-dark {
  border: 3px solid #000!important;
}

/*BS Progress Bar*/
.progress {
  margin: 2px;
  background-color: #323042!important;
}

/*BS table*/
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-border-color: rgba(0, 0, 0, 0.05);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;

}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-primary {
  --bs-table-color: #fff;
  --bs-table-bg: #323042;
  --bs-table-border-color: #323042;
  --bs-table-striped-bg: #201e2c;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #201e2c;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #201e2c;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #323042;
}

.table-secondary {
  --bs-table-color: #fff;
  --bs-table-bg: #8E44AD;
  --bs-table-border-color: #8E44AD;
  --bs-table-striped-bg: #5f3372;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #5f3372;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #5f3372;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #8E44AD;
}

.table-success {
  --bs-table-color: #fff;
  --bs-table-bg: #5B2C6F;
  --bs-table-border-color: #5B2C6F;
  --bs-table-striped-bg: #421f50;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #421f50;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #421f50;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #5B2C6F;
}

.table-info {
  --bs-table-color: #fff;
  --bs-table-bg: #3A2C6F;
  --bs-table-border-color: #271e46;
  --bs-table-striped-bg: #3A2C6F;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #271e46;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #271e46;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #3A2C6F;
}

.table-warning {
  --bs-table-color: #fff;
  --bs-table-bg: #e3bd75;
  --bs-table-border-color: #e3bd75;
  --bs-table-striped-bg: #7c6539;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #7c6539;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #7c6539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #e3bd75;
}

.table-danger {
  --bs-table-color: #fff;
  --bs-table-bg: #b13e3e;
  --bs-table-border-color: #b13e3e;
  --bs-table-striped-bg: #632626;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #632626;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #632626;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #b13e3e;
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #fff;
  --bs-table-border-color: #cccccc;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6e6e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ececec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #fff;
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: rgba(0, 0, 0, 0.8)!important;
  --bs-table-border-color: rgba(0, 0, 0, 0.8)!important;
  --bs-table-striped-bg: #3e444a;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #484e53;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #000;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.8)!important;
}

/*BS Accordion*/

.accordion-button:focus {
  border-color: #BB8FCE!important;
  box-shadow: 0 0 0 .25rem rgba(74, 34, 138, 0.8);
}

.accordion-button:not(.collapsed) {
  color: #421f50;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); 
  }
  
  /*BS card heights*/
  .cardscroll {
  overflow: auto;
}

.cardh300 {
  height: 300px!important;
}

.cardh100 {
  height: 100px!important;
}

.cardminh500 {
  min-height: 500px!important;
}
  
  /*Images*/
.profileimg {
  border-radius: 100%;
  height: 100px;
  width: 100px;
  float:left;
  padding: 5px;
}

.picright {
  float:right;
  margin: 2px;
}

.picleft {
  float:left;
  margin: 2px;
}

.stamps, .blinkies {
  display: inline-block; /* makes it fit in like an <img> */
  margin-left: 5px;
}

.gray-clr {
  filter: grayscale(100%);
  transition: 0.5s;
}

.gray-clr:hover {
  filter: grayscale(0%);
}

/*Navigation Bar*/
.nav-tabs .nav-link:hover {
  background: none;
  color: #8E44AD;
  text-align: center;
  text-decoration: none;
  border: none!important;
  box-shadow: none!important;
  outline:none!important;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:active, .nav-tabs .nav-link.active:hover {
  background: #fff!important;
  text-align: center;
  text-decoration: none;
  border: none!important;
  box-shadow: none!important;
  outline:none!important;
}

.nav-link {
 color: #fff; 
 transition: none!important;
 letter-spacing: .75px;
  text-transform: uppercase;
}

.navbar a {
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: RobotoMono-VariableFont_wght, EduSABeginner-VariableFont_wght, SpecialElite-Regular, CaveatBrush-Regular, Trebuchet MS, Courier, Roboto;
  font-size: 0.7em;
}

.navbar a:hover {
  background: #323042;
  color: #fff;
}

.navbar {
  border-bottom: 4px solid #323042;
  padding: 0px;
}

hr {
  margin: 1rem 0;
  color: #8E44AD;
  border: solid 2px #8E44AD;
  max-width: 100%;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  color: white;
  text-shadow: 1px 1px 2px #fff, 0 0 10px #fff, 0 0 3px #fff;
}

h2, .h2 {
  font-size: 25px;
  color: #8E44AD;
  border-bottom: #8E44AD dashed 3px;
}

h3, .h3 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  text-shadow: -0.07em 0 red, 0.07em 0 cyan;
 /* margin-top: 5px;
  margin-bottom: 2px;*/
}

h4, .h4 {
  font-size: 1.25rem;
  color: #8E44AD;
  border-bottom: #8E44AD solid 2px;
  border-top: #8E44AD solid 2px;
}

h5, .h5 {
  font-size: 1rem;
  letter-spacing: 5px;
    text-decoration: underline dotted #8E44AD;
}

h6, .h6 {
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  padding-left: 2px;
  background-color: #8E44AD!important;
  letter-spacing: 3px;
  border-left: 5px solid #5B2C6F;
  border-right: 5px solid #5B2C6F;
}

p {
  margin-top: 0;
  margin-bottom: 0!important;
}

ul {
  list-style-image: url('https://i.postimg.cc/w3KYqLmJ/z55353881cg6-1.gif');
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b, strong, strike {
 text-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
 font-weight: 800;
}

i, u {
  color: #8E44AD;
}

u {
 text-decoration: underline overline #8E44AD;
 font-weight: 600;
}

mark, .mark {
  padding: 0.1875em;
  color: white;
  background-color: #8E44AD;
}

small, .small {
  font-size: 0.750em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
  color: #8E44AD;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

blockquote, q {
  display: block;
  background: #8E44AD;
  padding: 10px 15px 10px 40px;
  margin: 0 0 1rem;
  max-width: 1000px;
  position: relative;
  line-height: 1.2;
  color: #ccc;
  text-align: justify; 
  border-top: 5px solid #5B2C6F;
  border-bottom: 5px solid #5B2C6F;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Other */
.fontaw {
  color: #8E44AD;
}

.fontaw:active, .fontaw:hover {
  color: #BB8FCE;
}

/*seamless marquee*/



/*CRT Overlay*/
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}
@keyframes textShadow {
  0% {
    text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  5% {
    text-shadow: 2.7928974010788217px 0 1px rgba(0,30,255,0.5), -2.7928974010788217px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  10% {
    text-shadow: 0.02956275843481219px 0 1px rgba(0,30,255,0.5), -0.02956275843481219px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  15% {
    text-shadow: 0.40218538552878136px 0 1px rgba(0,30,255,0.5), -0.40218538552878136px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  20% {
    text-shadow: 3.4794037899852017px 0 1px rgba(0,30,255,0.5), -3.4794037899852017px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  25% {
    text-shadow: 1.6125630401149584px 0 1px rgba(0,30,255,0.5), -1.6125630401149584px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  30% {
    text-shadow: 0.7015590085143956px 0 1px rgba(0,30,255,0.5), -0.7015590085143956px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  35% {
    text-shadow: 3.896914047650351px 0 1px rgba(0,30,255,0.5), -3.896914047650351px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  40% {
    text-shadow: 3.870905614848819px 0 1px rgba(0,30,255,0.5), -3.870905614848819px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  45% {
    text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  50% {
    text-shadow: 0.08084290417898504px 0 1px rgba(0,30,255,0.5), -0.08084290417898504px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  55% {
    text-shadow: 2.3758461067427543px 0 1px rgba(0,30,255,0.5), -2.3758461067427543px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  60% {
    text-shadow: 2.202193051050636px 0 1px rgba(0,30,255,0.5), -2.202193051050636px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  65% {
    text-shadow: 2.8638780614874975px 0 1px rgba(0,30,255,0.5), -2.8638780614874975px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  70% {
    text-shadow: 0.48874025155497314px 0 1px rgba(0,30,255,0.5), -0.48874025155497314px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  75% {
    text-shadow: 1.8948491305757957px 0 1px rgba(0,30,255,0.5), -1.8948491305757957px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  80% {
    text-shadow: 0.0833037308038857px 0 1px rgba(0,30,255,0.5), -0.0833037308038857px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  85% {
    text-shadow: 0.09769827255241735px 0 1px rgba(0,30,255,0.5), -0.09769827255241735px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  90% {
    text-shadow: 3.443339761481782px 0 1px rgba(0,30,255,0.5), -3.443339761481782px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  95% {
    text-shadow: 2.1841838852799786px 0 1px rgba(0,30,255,0.5), -2.1841838852799786px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  100% {
    text-shadow: 2.6208764473832513px 0 1px rgba(0,30,255,0.5), -2.6208764473832513px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
}
.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}