@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: "lamebrains";
    src: url("/fonts/LAMEBRAINS.ttf") format("truetype");
}

body {
    background-color: black;
    position: relative;
    width: 100%;
    text-align: center;
    color: white;
    height:auto;
    margin:auto;
    overflow: hidden;
    cursor: url("/cursors/chrome_skull_gasmask.cur"), auto;
}


html {
    padding:0px;
}

h1 {
    color: red;
    background: -webkit-linear-gradient(red, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: orange;
}

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

}

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

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

.turntablez {
  font-family: "turntable";
  /*font-size: 30px;*/
}

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

.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;
}

@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 float {
    0% {transform: translateY(10)}
    50% {transform: translateX(-10)}
}