body{
    margin: 0;
    padding: 0;
    background: url(image.png);
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}
.containt-box{
    width: 350px;
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,0%);
    box-sizing: border-box;
    overflow:hidden;
}
.box{
    width: 250px;
    height: 170px;
    position: absolute;
    left: 50px;
    top:35%;
    background: url(sbalogo2.png);  
    overflow:hidden;
    animation: box 2s alternate infinite ease-in;
    -webkit-animation: box 2s alternate infinite ease-in;
}

.marquee{
  display:block;
  position:relative;
  animation:scroll 30s linear infinite;
  -webkit-animation:scroll 30s linear infinite;
}
.img{

  /*animation:shadow_right_bottom 7.5s linear infinite;*/
  text-align: center;
  box-shadow: 0 25px 15px 0 rgba(0, 0, 0, 0.6), 0 25px 5px 0 rgba(0, 0, 0, 0.6);
  width:125px;
  height:125px;
  background-color:#aaaaaa;
  margin:24px;
  float:left;; 
}
.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes scroll{
0% {bottom:100%;}
100% {bottom:0%;}
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes scroll{
0% {bottom:100%;}
100% {bottom:0%;}
}

@-webkit-keyframes box {
  0%   {transform: scale(0.8);}
  100% {transform: scale(1);}
}


@keyframes box {
  0%   {transform: scale(0.8);}
  100% {transform: scale(1);}
}

@keyframes shadow_right_bottom{
0% {box-shadow: 15px 35px #aaaaaa;}
25% {box-shadow: 0px 0px #aaaaaa;}
50% {box-shadow: 15px -35px #aaaaaa;}
75% {box-shadow: 0px 0px #aaaaaa;}
100% {box-shadow: 15px 35px #aaaaaa;}
}
@keyframes shadow_left_bottom{
0% {box-shadow: -15px 35px #aaaaaa;}
25% {box-shadow: 0px 0px #aaaaaa;}
50% {box-shadow: -15px -35px #aaaaaa;}
75% {box-shadow: 0px 0px #aaaaaa;}
100% {box-shadow: -15px 35px #aaaaaa;}
}
/*@keyframes shadow_left_top{
0% {box-shadow: -15px -15px #aaaaaa;}
50% {box-shadow: 0px 0px #aaaaaa;}
100% {box-shadow: -15px -15px #aaaaaa;}
}
@keyframes shadow_left_top{
0% {box-shadow: -15px 15px #aaaaaa;}
50% {box-shadow: 0px 0px #aaaaaa;}
100% {box-shadow: -15px -15px #aaaaaa;}
}*/