
@import "compass/css3";

body {
  align-items: center;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
}

main {
  text-align: center;
}

.hayu-logo {
  width: 10vw;
}

  .hayu-logo__dot {
    
    .hayu-logo.is-loading & {
      @include animation(bounce 2s infinite);
    }
  }



@include keyframes(bounce) {
	0%, 20%, 50%, 80%, 100% {
    @include transform(translateY(0));
  }
	40% {
    @include transform(translateY(-150%));
  }
	60% {
    @include transform(translateY(-30%));
  }
}