*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

section{
	width: 100vw;
	overflow: hidden;
}

section:last-child{
	position: fixed;
	bottom: 0px;
}


section:last-child .springmaus-wrapper{
	margin-top: 50px;
	height: 140px;
}



@keyframes moveAcross {
  0% {
    left: 110%;
  }
  100% {
    left: -150px;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}