body {
  color: red;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 25px;
  background-image: url("https://i.imgur.com/PbV2SUF.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 100% 100%;

}

.backgwound {
    float: none;
    background-color: #2f2d2e;
    border: 2px dashed #332829;
    padding: 5px;
    width: 880px;
    height: 84px;
}

.hello {
    width: 200px;
    border: 2px dashed red;
    padding: 15px;
    background-image: linear-gradient(rgba(173, 0, 0, 0), rgba(197, 0, 102, .25));
    margin: auto;
    margin-bottom: 5%;
}

.rightparagraph {
  border: 2px dashed red;
  margin: 10px;
  float: right;
  background-image: linear-gradient(rgba(173, 0, 0, 0), rgba(255, 0, 0, .35));
  width: 150px;
  height: 1500px; 
}

.leftparagraph {
  border: 2px dashed red;
  margin: 10px;
  float: left;
  background-image: linear-gradient(rgba(173, 0, 0, 0), rgba(255, 0, 0, .35));
  width: 150px;
  height: 1500px; 
}

.footer {
  background-color: black;
  padding: 10px;
  border: 2px dashed red;
  text-align: center;
}

.fang1 {
  cursor: url("https://i.imgur.com/n8BHJU0.png"), default;
}

.fang2 {
  cursor: url("https://i.imgur.com/Uv8xneZ.png"), pointer;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 2px;
  background-color: black;
  border: 1px solid red;
}

.a {
   text-align: left;
}

.b {
  text-align: center;
}

.c {
   text-align: right;
}

.box-outer {
    border: 2px solid red;
    zoom: 100%;
    margin-bottom: .5em;
    padding-bottom: .5em;
    margin: 0;
}

.boxbarz {
    background: red;
    padding-left: .5em;
    line-height: 2em;
    position: relative;
    zoom: 100%;
}

.boxcontentz {
    padding: .5em;
    padding-top: .25em;
    padding-bottom: 0;
    line-height: 130%;
}

.box-inner {
  background-color: black;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration-line: underline;
  text-decoration-style: double
}

.x {
  text-decoration-line: underline;
  text-decoration-style: double;
}

#overlay {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: brown;
  z-index: 2;
}

.webkit-scrollbar {
    width: 15px;
}

.webkit-scrollbar-thumb {
      background: black;
}

@media screen and (max-width: 3000px) {
    .updates {
        width: 500px;
        margin-bottom: 1em;
        float: none;
    }
}

rotate {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    position: absolute;
}

.pixelated {
  image-rendering: pixelated;
}

html { filter: url("#pixelate") }
svg { display: block }

.updates {
    width: 510px;
    margin-right: 2%;
    height: 350px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px red dashed;
    background: black;
    float: right;
}
iframe {
    border: none;
    padding: 0;
    margin: 0;
}

#corvidin {
  position: absolute;
  z-index: 3;
  background-image: url("https://i.imgur.com/FCTtXBA.gif");
  background-size: cover;
  animation: corvidin 2s infinite;
  animation-timing-function: ease-in-out;
  float: right;
  width: 250px;
  height: 250px;
  margin-left: 20px;
}

.anim {
   animation-name: corvidin;
}
   
@keyframes corvidin {
  0%   {transform: translate(0, 0px);}
  50%  {transform: translate(0, 20px);}
  100% {transform: translate(0, -0px);}
}