
 #container {
  width: 100%;
  height: 100%;
 }
 
 .bottom {
  width: 100%;
	height: 15px;
  padding: 5px;
  text-align: center;
  background: #;
  color: white;
  font-size: 30px;
  margin-right: auto;
  margin-left: auto;
 }
 
  .header{
 	width: 100%;
	height: 50px;
  padding: 0px;
  text-align: center;
  background: #;
  color: white;
  font-size: 30px;
  margin-right: auto;
  margin-left: auto;
 }

 .enterbox {
  background-image: url("");
  background-size: 610px;
  padding:0px;
	width: 700px;
	height: 410px;
	margin-right: auto;
  margin-left: auto;
  border: 0px solid #7a5443;
  border-radius: 0px;
 }

 .moving-enter {
  background-image: url("");
  background-size: 315px;
  position:absolute;
  padding:0px;
	width: 25%;
	height: 30%;
  margin-left: 10%;
  margin-top: 12%;
  border: 0px solid #7a5443;
  border-radius: 0px;
 }
  
  .moving-enter {
    -webkit-animation: action 2.5s infinite  alternate;
    animation: action 1.5s infinite  alternate;
}

@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }

}

 .moving-stamps {
 width: 100%;
 white-space: nowrap;
 overflow: hidden;
 position: relative;
 }
 
 .moving-stamps span {
 display: inline-block;
 animation: marquee 25s linear infinite;
 }

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