@font-face {
    font-family: "open-dyslexic";
    src: url(https://jabroni.zone/about/fonts/MS%20Sans%20Serif%208pt.ttf);
}

body{

}
a {
    color: #7d3c32;
}

#mainbox{
    margin: auto;
    max-width: 800px;
    position: relative;
}
img{
    overflow: hidden;
}
iframe{
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
.rotate_imageL {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
        }
.rotate_imageR {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
        }
#paint{
    background-color: #797979;
    float: right;
    width: 90%;
}
#painttools{
    float: left;
    width: 50px;
}
#paintfoot{
    clear: both; 
}
.tool*{
    width: 5px;
    height: 5px;
}
.pallete{
    padding-top: 4px;
    width: 255px;
    height: 32px;
    background-image: image("icons/pallette.png");
    background-repeat: no-repeat;
    background-position: top 2px left 3px;
}
@keyframes tilt {
    from { transform: rotate(-15deg);}
    to { transform: rotate(15deg);}
}
#friendico {
    animation-name: tilt;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
    width: 20px;
    display:inline-block;
    margin: 5px;
}
#drag {
  position: absolute;
  z-index: 9;
  text-align: center;
}
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
.crt::after {
  content: " ";
  display: block;
  position: absolute;
    height: 1400px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 9999999999;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
.crt::before {
  content: " ";
  display: block;
  position: absolute;
  height: 1400px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 99999999;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
.crt {
  animation: textShadow 1.6s infinite;`
}
.container {
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation: marquee 2s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

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