body {
  background-image: url("lebackground.jpg");
 background-color: #cccccc;
 background-repeat: repeat;

	background-attachment: fixed;
  background-position:center;
	font-family: "Jersey 20", serif;
	font-size: 17px;

}
.jersey-20-regular {
  font-family: "Jersey 20", serif;
  font-weight: 400;
  font-style: normal;

}
@font-face {
font-family: "Rebucked";
src: url(https://file.garden/aVAgiII0UybtQpRE/rebucked.ttf);
}

.worm {
  position: absolute;
  top: 240px;
  left: 40px;
  z-index: 5000;
  font-size:60px;
  font-family:'Rebucked'; 
  color: #0037ff;
  animation: jerky 0.5s infinite;
  text-shadow: -2px 0 #fff, 0 2px #80acff, 2px 0 #80acff, 0 -2px #fff, 0 0;
  padding: 0 1px 0 1px;
}

.Credits {
  text-align: center;
  color: #d1c5f5;
}
center {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  }
  
a {
  color: #0037ff;
  text-decoration: none;
}


textarea {
    background: #fff;
    border: 1px solid #314bbf;
    border-radius: 5px;
    width: 98%;
    height: 6em;
    padding: 2px;
}

/*All sidebars go in here.*/  
.sidebar-group {
  position: fixed;
  top: 0;
  margin-top: 25px;
  }
  
/*Code shared by all window-style boxes. To see what different specific sidebar classes look like, check the demo page.*/
.sidebar, .mini-sidebar, .wide-sidebar, .right-sidebar, .box {
  background: #ece6da;
  border-radius: 5px;
  border: 1px solid #000;
  box-shadow: 2px 2px #000;
  }
  
/*Prevent image overflow.*/
.sidebar img, .mini-sidebar img, .wide-sidebar img, .right-sidebar img, .box img {
  max-width: 100%;
  height:auto; /*Prevent squishing*/
  }
  
.sidebar, .sidebar-box {
  display: inline-block;
  vertical-align: top;
  width: 160px;
  }
  
/*Container for vertical stacks of multiple mini-sidebars*/
.sidebar-box {
  margin-left: 10px;
  }
  
.sidebar {
  width: 160px;
  margin-left: 25px;
  }
.right-sidebar {
  width: 325px;
  margin-left: 900px;
    vertical-align: top;
    z-index:-5;
    display: inline-block;
  }
.mini-sidebar {
  margin-bottom: 25px;
  }
  
.wide-sidebar {
  margin-left: 25px;
  margin-top: 25px;
  width: 340px;
  min-height: 150px;
  }
  
/*Inside/main text of window boxes.*/
.inner {
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 0px;
  text-shadow: 2px 2px 0px #d1c5f5;
  }

/*The title bar at the top of window boxes.*/
.title-bar, .box-title-bar {
  background: #1847bb;
  color: white;
  font-weight: bold;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  }
  
/*The title bar of boxes has slightly more padding, since there's more room to space text.*/
.box-title-bar {
  padding: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  }
  
/*For the symbol in the top right corner.*/
.right {
  float: right;
  margin-right: 5px;
  font-family: "Arial", sans-serif;
  line-height: 12px;
  }
  
/*Round circular image.*/
.icon {
  border: #80aa6f solid 2px;
  border-radius: 50%;
  }
  
/*Main body text boxes.*/
.box {
  margin-top: 25px;
  margin-left: 400px;
  width: 650px;
  margin-bottom: 25px;
  }
 
 

/*fontbullshit*/
@keyframes jerky {
      0% {
        transform: rotate(2deg);
      }

      50% {
        transform: rotate(2deg);
      }

      51% {
        transform: rotate(-2deg);
      }

      100% {
        transform: rotate(-2deg);
      }
    }
 