/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 13 2023 | 10:41:49 */
body {
	font-family:Raleway-Regular;
	    --wp--style--block-gap: 0rem;
}
h1,h2,h3,h4,h5,h6 {
	font-family:Poppins-Bold;
}
.poppins-light {
	font-family:Poppins-Light!important;
}

/*Nav*/
.wp-block-navigation__responsive-container-close, .wp-block-navigation__responsive-container-open {
    background: #ffffff5c;
    padding: 15px;
    border: 1px solid #fff;
}
.wp-block-navigation .wp-block-navigation-item a:hover, .wp-block-navigation .wp-block-navigation-item a:focus {
    text-decoration: none;
}
.nav-fixed {
	position:fixed;
	top:35px;
	right:150px;
	z-index:100!important;
	width:90%;

}

/*Roboter Animation*/
.robi {
  animation: MoveUpDown 5s linear infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
}


@keyframes ani{
	0%{background-position: 100vw 0;}
	100%{background-position: 0vw 0;}
}
.clouds{
	background:url(https://wordpress-kurs2-teil4.stws.ch/wp-content/uploads/2023/05/clouds3.png) ;
	background-size:cover;
	height:700px;
	animation: ani 20s linear infinite ;
	position:relative;
	margin-top:-700px;
	z-index:200;
}


