body{
  height:100%;
  background-color: #0f755a;
	background-image:  linear-gradient(#149155 2px, transparent 2px), linear-gradient(90deg, #149155 2px, transparent 2px), linear-gradient(#149155 1px, transparent 1px), linear-gradient(90deg, #149155 1px, #0f755a 1px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
  font-family:'Source Sans Pro', sans-serif; 
  font-size:15px; 
  color: #666;
  letter-spacing:0.5px;
  }
#header {
  top:-10px; 
  left:-10px; 
  width:100%; 
  background-color:#3d423d;
  line-height:80px;
  text-align:center;
  font-family: 'gothik';
  font-size:60px;
  color:#ffffff; 
  letter-spacing:3px;
  padding: 0;
  margin-top:0;
  }
#deader {
  background-color:#3d423d;
  width:100%;
  height: 20px;
  }

@font-face {
  font-family: 'gothik';
  src: url('https://backwalls.neocities.org/Gothik%20Steel.ttf');
  } 
@font-face {
font-family: 'bladge';
src: url('https://backwalls.neocities.org/Bladge.ttf');
} 

#linkity{position:relative; top:-30px}

#box1{margin:0 auto; margin-top:0px; width:800px;padding:26px;background-color:#fff;font-size:16px;line-height:22px;height:100%;}

#box2{position:relative;margin-bottom:10px;width:556px;}

#box3{position:relative;float:right;width:200px;}

#foot{clear:both;text-align:center;font-size:11px;}

h1{
  display:block;
  border-right: 10px solid #d45558;
  font-size:20px;
  line-height:22px;
  font-weight:normal;
  background-color:#3d423d;
  letter-spacing:1px;
  padding:6px;
  color:#8FBC8F;
  font-family: 'bladge';
  }

a{
  text-decoration:none;
  color:#cc564c;
  }
a:hover{
  background-color:#3d423d;
  color:#fff;
  }

a.linkit{
  display:inline-block;
  width:100px;
  font-size:16px;
  color:#d45558;
  font-family: "Oswald", sans-serif;
  text-transform:uppercase;
  line-height:16px;
  letter-spacing:2px;
  padding:10px;
  background-color:#3d423d;
  border:2px #8FBC8F solid;
  }
a.linkit:hover, a.longan:active{
  background-color:#8FBC8F;
  color:#fff;
  border-color:#d45558;
  -o-transition:0.3s;
  -ms-transition:0.3s;  
  -moz-transition:0.3s; 
  -webkit-transition:0.3s; 
  transition:0.3s;
  }
textarea{
  width:100%
  }

/* side images */
.sideimage { 
  right: 10px;
  bottom: -10px;
  float: right;
  position: fixed;
  max-width: 450px;
  }
  
.sideimage img {
  max-width: 100%;
  height: auto;  
  }

/* top marquee */ 
.marquee {
  height: 40px;
  width: 100%;

  overflow: hidden;
  position: relative;
  background-color: #3d423d;  
  border-top: 1px;
  border-bottom: 1px;
  padding: 4px 0 4px 0;
}

/* would need to be adjusted depending on time */
.marquee .marqueeone{
  animation: marquee 30s linear infinite
}
.marquee .marqueetwo{
  animation: marquee 30s linear 7.5s infinite 
}
.marquee .marqueethree{
  animation: marquee 30s linear 15s infinite
}

.marquee .marqueefour{
  animation: marquee 30s linear 22.5s infinite
}

/* even out the elements */
.marquee div {
  position: absolute;
  width: 100%;
  left: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
}

.marquee:hover div {
  animation-play-state: paused;
}

/* add delay at the end of animation so you dont start while another div is going */
@keyframes marquee {
  0% { left: 100%; }
  50% { left: -100%; }
  100% {left: -100%}
}

