@charset "UTF-8";
/* CSS Document */

.page--top .cube {
  width: 700px;
  height: 700px;
  position: absolute;
  background-repeat: no-repeat;
animation-name: anime11;
animation-duration: 2s;
animation-timing-function: ease;
animation-iteration-count: 1;
    animation-fill-mode: forwards
}


@keyframes anime11 {
0% {transform:  translateY(0);}
100% {transform:  translateY(-5px);}
}