.kangaroo-wheel {
    -webkit-animation-name: rotate; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps(12);
    -moz-animation-name: rotate; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: steps(12);
}
@-webkit-keyframes rotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}
.kangaroo-container {
    position: relative;
}
.kangaroo-title {
    text-align: right;
    position: absolute; 
    color: white;
    font-size: 60px;
    left: 90px;
    top: 16px;
    z-index: 1000;
}
.kangaroo-subtitle {
    font-size: 120%;
    font-weight: 200;
    text-align: right;
    position: absolute;
    z-index:10;
    bottom: 0px; right: 0px;
    padding: 16px;
    background: rgba(0,0,0,0.8);
}
.kangaroo-box {
    background: black;
    padding: 0px;
    width: 600px;
    height: 200px;
    overflow: hidden;
    margin: 0px;
}
.kangaroo-box2 {
    padding: 0;
    margin: -500px 0 0 -180px;
}
