/* CSS-Definitionsdatei, die Site-weite Stylesheets enthält */

.mitbackground {
    background-image: url("../assets/images/autogen/button-pink.gif");
	background-size: 100%;
}

.headerbackground {
    background-image: url("../assets/images/autogen/banner-pink2.png");	
	background-size: 100%;
	font-family: "Lucida Calligraphy";
	font-weight: bold;
	font-size: x-large;
	color: #B4C7E7;
	text-align: center;
}
.rotateimg {
  animation: rotation01 5s infinite;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

