:root {
     --dk-color:#3333ff;
     --mid-color:#6666ff;
     --lt-color:#b3b3ff;
     --dkest-color:#24249c;
     --accent:#0e0ea3;
}

 h1, h3, h5 {
     color:var(--dk-color);
     filter: drop-shadow(2px 2px rgba(10, 10, 12, 0.267))
}
 h2, h4, h6 {
     color:var(--accent);
     filter:drop-shadow(2px 2px rgba(10, 10, 12, 0.267));
}

body {
     margin:0;
     height:98%;
     font-family:Comic Sans MS;
     font-size:15px;
     background-image:url('https://thegreenroom.neocities.org/spr_dw_tv_starbgtile_0.gif');
     background-repeat:repeat;
     background-position: top left;
     animation: mymove 20s linear infinite;
     color:var(--dkest-color);
     padding:2rem; 
      cursor: url("https://file.garden/aGVgARL4OBP7L4sn/sym599.cur"), auto;
       padding-bottom:10px;
     }

     @keyframes mymove {
  50% {background-position: center;}
}

img{  filter: drop-shadow(2px 2px rgba(10, 10, 12, 0.267));
}


.shaky {
    width:50%;
         padding:4px;
 animation: shake 0.5s infinite;
 }
 
 @keyframes shake {
 0% {
 transform: translate(1px, 1px);
 }
 10% {
 transform: translate(-1px, -1px);
 }
 20% {
 transform: translate(-1px, 0px);
 }
 30% {
 transform: translate(1px, 1px);
 }
 40% {
 transform: translate(1px, -1px);
 }
 50% {
 transform: translate(-1px, 1px);
 }
 60% {
 transform: translate(-1px, 1px);
 }
 70% {
 transform: translate(1px, 1px);
 }
 80% {
 transform: translate(-1px, -1px);
 }
 90% {
 transform: translate(1px, 1px);
 }
 100% {
 transform: translate(1px, -1px);
 }
 }

 .middle{
  border-style: dotted;
  filter: drop-shadow(5px 5px rgba(10, 10, 12, 0.603));
  float: middle;
  width: 800px;
  height:auto;
    margin:auto;
    padding:2rem;
  background-image:url(https://thegreenroom.neocities.org/images/strip05106.gif);
  text-align: center;
  border-radius: 5px;
  overflow:hidden;
  scrollbar-base-color: #b3b3ff;
}

.leftsticky {
  z-index: 10;
  position: fixed;
  filter: drop-shadow(10px 10px 7px rgba(10, 10, 12, 0.733));
  bottom: 0;
  left: 0;
}

.rightsticky {
  z-index: 10;
  position: fixed;
   filter: drop-shadow(-10px -10px 7px rgba(10, 10, 12, 0.521));
  bottom: 0;
  right: 0;
}


    /* Fullscreen black overlay (starts invisible) */
    #blackScreen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: black;
      display: none;
      z-index: 9999;
    }