@font-face {
    font-family: "thunder";
    src: url("/fonts/PritchardStd.otf") format("opentype");
}

@font-face {
    font-family: "hardcorium";
    src: url("/fonts/hardcorium.ttf") format("truetype");
}

@font-face {
    font-family: "turntable";
    src: url("/fonts/turntable.ttf") format("truetype");
}

@font-face {
    font-family: "cats";
    src: url("/fonts/cats.ttf") format("truetype");
}

@font-face {
    font-family: "lamebrains";
    src: url("/fonts/LAMEBRAINS.ttf") format("truetype");
}

@font-face {
    font-family: "bymyside";
    src: url("/fonts/brothergaragesans.ttf") format("truetype");
}

@font-face {
    font-family: "pelstem";
    src: url("/fonts/stempel.ttf") format("truetype");
}

html {
    background-color: black;
    /*background-image: url("/img/greengrid.jpg");*/
    position: relative;
    width: 50%;
    text-align: center;
    color: white;
    height:auto;
    margin:auto;
    overflow: hidden;
    padding:0px;
    cursor: url("/cursors/chrome_gasmask.cur"), auto;
}


header {
    background: rgb(36, 13, 82);
    border-style: dashed;
    border-color: darkorange;
    border-width: 2px;
    border-radius: 5px;
    
    height: 22px;
    padding: 0;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


h1 {
    color: green;
    background: -webkit-linear-gradient(lime, yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: orange;
}

img {
  max-width: 1500px;
  max-height: 1000px;

}

a {
	color: orange;
	box-shadow: 0 1px 0 orange;
}

code {
	font-size: 15px;
	color: lightgreen;
}

#wrapper {
  display: flex;
  gap: 10px;
}

.saygex {
    max-height: 40px;
    max-width: 50px;
}

.marquee {
  animation: marquee 7s linear infinite;
}

.epicdiv {
    background-color: #050100;
    border: 2px solid #02BF4F;
    /*padding: 1rem;*/
    background-image: url("/img/greengrid.jpg");
    width: 50%;
}

.raper {
  animation-duration: 0.3s;
  animation-name: rape;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
  text-align: center;
}

.loule {
  animation-duration: 25s;
  animation-name: lol;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  text-align: center;
}

.wanker {
  animation: wank 0.5s linear infinite alternate, marquee 7s linear infinite;
}

@keyframes rape {
  from {
   color: white;
   background-color: red;
  }
  25% {
   color: green;
  }
  50% {
   color: yellow;
   background-color: blue;
  }
  75% {
   color: orange;
  }
  to{
   color: red;
   background-color: white;
  }
}

@keyframes lol {
  from {
   font-size: 100%
  }
  to{
   font-size: 200%
  }
}

@keyframes wank {
   0% {
    /*transform: translateX(150%);*/
    color: red;
  }
  100% {
    /*transform: translateX(-150%);*/
    color: lime;
  }
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  75% {
    font-size: 300%;
    margin-left: 25%;
    width: 150%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}


.thunderdome {
  font-family: "thunder";
  font-size: 120px;
}

.hardcore {
  font-family: "hardcorium";
  font-size: 100px;
}

.turntablez {
  font-family: "turntable";
  font-size: 25px;
}

.lb {
  font-family: "lamebrains";
  font-size: 40px;
}

.meow {
    font-family: "cats";
    color: "red";
    font-size: 40px;
}

.brother {
    font-family: "bymyside";
    font-size: 30px;
}

.stempel {
    font-family: "pelstem";
    font-size: 20px;
}

.urg {
  max-width: 500px;
  max-height: 300px;
  border: solid red;
}

.urg:hover {
  max-width: 520px;
  max-height: 320px;
  border: solid red;
}


.fart a {
    text-decoration: none;
    color: rgb(255, 183, 0);
    line-height: 20px;
    font-size: 15px;
    display: block;
}

.fart a:hover {
    color: orangered;
}


.squashNstretch {
    animation: squishsquash ease 1.5s infinite;
}

.upNdown {
    animation: upNdown ease-in-out 3s infinite;
}

.floating {
    animation: floating ease-in-out 2s infinite;
}

@keyframes squishsquash {
    0% {transform: scaleY(1.03) scaleX(0.97)}
    50% {transform: scaleY(0.97) scaleX(1.03)}
    100% {transform: scaleY(1.03) scaleX(0.97)}
}

@keyframes upNdown {
    0% {margin-top: 360px}
    50% {margin-top: 400px}
    100% {margin-top: 360px}
}

@keyframes floating {
    from {transform:translate(0, 0px);}
    65% {transform:translate(0, 15px);}
    to {transform: translate(0, -0px);}    
}

@keyframes marquee {
  0% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(-150%);
  }
}

.center {
	display: block;
  	margin-left: auto;
  	margin-right: auto;
  	width: 50%;
}

.ebin {
	font-size: 25px;
	transition: 0.3s;
}

