@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');

body{ 
    background-color: rgb(114, 113, 113);
}

.ueberschrift	{
   text-align: center;
   font-family: 'Salsa', cursive;
}

.subueberschrift {
	font-family: 'Salsa', cursive;
	text-align: center;
  	border-bottom: 2px solid black;
  	padding-bottom: 5%;
}

.image	{
    display: flex; 
    margin: 0 auto;
    height: 250px;
    width: 250px;
}

.background {
    height: 250px;
    width: 250px;
  	display: flex;
  	margin: 0 auto;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover; 
  	background-attachment: fixed;
}


.shadow:hover {
	box-shadow: 0 0 10px black;
}


#wrapper {
	display: flex;
	align-items: center;
	padding: 20px; 
  	z-index: 1;
}
  
#wrapper {
	display: flex;
	justify-content: center;
}
  
#first, #second, #third {
	flex: 1;
	max-width: 300px;
	background-color: white;
	border: 1px solid black;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	z-index: 1;
}
  
#second {
	margin: 10px 40px; 
}
  

h1 {
    margin-top: 50px;
    text-align: center;
}

ul, li {
	list-style-type: none;
  	padding-left: 0;
}


@media screen and (max-width: 1000px) {

	#first, #second, #third{
		height: 215px;
		width: 150px;
		position: static;
		margin: 0;
	}
	
}

.loader {
	position: relative;
	width: 120px;
	height: 90px;
	margin: 0 auto;
  }
  
  .loader:before {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #2a9d8f;
	animation: loading-bounce 0.5s ease-in-out infinite alternate;
  }
  
  .loader:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 7px;
	width: 45px;
	border-radius: 4px;
	box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
	animation: loading-step 1s ease-in-out infinite;
  }
  
  @keyframes loading-bounce {
	0% {
	  transform: scale(1, 0.7);
	}
  
	40% {
	  transform: scale(0.8, 1.2);
	}
  
	60% {
	  transform: scale(1, 1);
	}
  
	100% {
	  bottom: 140px;
	}
  }
  
  @keyframes loading-step {
	0% {
	  box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
			  0 10px 0 #f2f2f2,
			  -35px 50px 0 #f2f2f2,
			  -70px 90px 0 #f2f2f2;
	}
  
	100% {
	  box-shadow: 0 10px 0 #f2f2f2,
			  -35px 50px 0 #f2f2f2,
			  -70px 90px 0 #f2f2f2,
			  -70px 90px 0 rgba(0, 0, 0, 0);
	}
  }
