body {
	background-color: #000;
    }

.content {
    max-width: 500px;
    margin: auto;
  }



.sponsors {
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 10px;
}

.sponsors img {
    float: left;
}


#lamb {
    position: fixed;
    top: 0px;
    left: 0px;
    max-width: 15%;
    height: auto;
}

.moving {
    animation-name: jump;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

@keyframes baa {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes jump {
    0%   { transform: translateY(0); }
    20%  { transform: translateX(150px); }
    100% { transform: translateY(0); }
}


