@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
/*  background: linear-gradient(to top, #6ab150 30%, #87CEEB 70%);*/
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.loader {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loading-text {
  font-size: 1.5rem;
  color: #333;
  padding-top: 300px;
}

.ball {
  position: absolute;
  bottom: 100px;
  left: -60px;
  width: 60px;
  height: 60px;
  background: url( "images/ball.png") no-repeat center/contain;
  animation: roll 3s linear infinite;
  z-index: 2;
}

@keyframes roll {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(100vw) rotate(720deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}


.grass {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: repeating-linear-gradient(
    -45deg,
    #228B22,
    #228B22 10px,
    #2E8B57 10px,
    #2E8B57 20px
  );
  z-index: 1;
}

