h2 {
  font-family:"cooper-black-std";
}

body {
  background-color:black;
  font-size:1.2em;
}

.title {
  display:block;
  margin: auto;
  width:50%;
}

.block {
  border-color:white;
  border-style:solid;
  color:white;
  padding:1%;
  margin:2% 20% 2% 20%;
}

.block p {
  font-family:arial;
}

a {
  color:#e4b36e;
  font-family:"cooper-black-std";
}

a:hover {
  font-size:1.3em;
}

.bs img {
  width:32.6666666666666%;
}

@keyframes leftbuff {
  from {transform: translateY(0);}
  to {transform: translateY(-100%);}
}

@keyframes rightbuff {
  from {transform: translateY(0);}
  to {transform: translateY(100%);}
}

@keyframes leftscroll {
  from {transform: translateY(100%);}
  to {transform: translateY(-100%);}
}

@keyframes rightscroll {
  from {transform: translateY(-100%);}
  to {transform: translateY(100%);}
}

.scrolling img {
  width:100%;
}

.leftscroller .scrolling {
  position:fixed;
  width:17%;
  left:1.5%;
  bottom:0;
  animation: leftscroll 40s linear infinite;
}

.rightscroller .scrolling {
  position:fixed;
  width:17%;
  right:1.5%;
  top:0;
  animation: rightscroll 40s linear infinite;
}

.rightscroller #repeat {
  transform: translateY(-100%);
  animation-delay:20s;
}

.leftscroller #repeat {
  transform: translateY(100%);
  animation-delay:20s;
}