@charset "UTF-8";
/* CSS Document */
body {
	min-height: 120%;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-image: url('https://vanessashunde-spa.ch/images/baxter_04.jpg'), url('https://vanessashunde-spa.ch/images/baxter_03.jpg'); /* Erstes Hintergrundbild */
	background-color: #f5f5f2;
	
	-webkit-animation-name: changeBackground;
	-webkit-animation-duration: 15s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-play-state: running;
	
	animation: changeBackground;
	animation-duration: 15s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-play-state: running;
}
@-webkit-keyframes changeBackground {
0%, 100% {background-image: url('https://vanessashunde-spa.ch/images/baxter_04.jpg');}
50% {background-image: url('https://vanessashunde-spa.ch/images/baxter_03.jpg');}
}
@-moz-keyframes changeBackground {
0%, 100% {background-image: url('https://vanessashunde-spa.ch/images/baxter_04.jpg');}
50% {background-image: url('https://vanessashunde-spa.ch/images/baxter_03.jpg');}
}
@keyframes changeBackground {
0%, 100% {background-image: url('https://vanessashunde-spa.ch/images/baxter_04.jpg');}
50% {background-image: url('https://vanessashunde-spa.ch/images/baxter_03.jpg');}
}