body{animation: change-background 10s none infinite step-end;} 

div{color: #cf85ff;
  margin: auto;
  width: 100%; position:auto;
left: 25%;
}

p{font-family: "Marion", serif; margin: auto; font-size:2vw; letter-spacing: -0em; text-align: center;margin-bottom: 0.2%;}
h1{font-family: "Marion", serif; margin: auto;font-weight:200; font-size:4vw; letter-spacing: -0em; margin-top: 0%; text-align: center;}

	.back{max-width: 10%; position: static; margin-left: 45%; animation: rotation 2s infinite ease; padding-top: 4%;}

	.imprint{max-width: 60%; position: static; margin-left: 20%; animation: rotation 4.5s infinite ease; padding: 2%;}


.downloadlink {text-decoration: none; color: #cf85ff;}

.gif{display: block; height:35vw;
    margin: 0 auto;}
    

@keyframes rotation {
0% {
    transform: rotate(-5deg);
  }
  50% { 
    transform: rotate(5deg);
    }
  100% {
    transform: rotate(-5deg);
	}
}
	
@keyframes  change-background {
      0% {
        background: #dfe9b5;
      }
    50 {
        background: #d66932;
      }
   100 {
        background: #578fff;
      }
   
