/* Spiel Button */
.spiel_container {
width:100%;
display: flex;
margin-left:60%;
}
.spielbutton {

position:fixed;
margin-top:-160px;
z-index:1000;
width:300px;
min-width:300px;
max-width:300px;
height:172px;
//background:red;
text-align:center;
-webkit-box-shadow: 5px 5px 15px 5px #595959; 
box-shadow: 5px 5px 15px 5px #595959;
animation: myAnim 8s ease 3s 1 normal forwards;
background-image: url('/gewinnnspiel/bs.png');
background-repeat: no-repeat;
background-size: cover;
}

/* ANimation  */
@keyframes myAnim {
	0% {
		transform: translateY(-100px);

	}

	20% {
		transform: translateY(170px);

	}
	80% {
		transform: translateY(170px);

	}
100% {
		transform: translateY(-100px);

	}
}
