@charset "utf-8";
/* SPINCARD */
@keyframes spin {
  from {
	transform: rotateY(0);
  }
  to {
	transform: rotateY(1turn);
  }
}

.spincard {
  animation: spin 5s ease;
  animation-iteration-count: infinite;
}

.container {
  perspective: 1000px;
}

.box {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(black, .2);
  background: lighten(#f0f4c3, 10%);
  position: absolute;
  overflow: hidden;
  top: 250px;
  transform: translate3d(0, 0, 0);
}

