/*.my-slides{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #666;
}*/

.welcome{
	font-size: 3.6rem;
	color: #EDEDED;
	font-family: 'avenir';
}

.spiel{
	font-size: 1.4rem;
	color: black;
	font-family: 'avenir';
	font-weight: 500;
}

.background-container{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.background{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.showing{
	opacity: 1;
	z-index: -1;
	transition: none;
}