#home{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#home-logo{
	display: flex;
	flex-direction: column;
	width: 90%;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	height: 100vh;
}

#home-text{
	display: flex;
	flex-direction: column;
	color: #fff;
	text-align: center;
	width: 100%;
}

#col-grid{
	display: grid;
	width: 85%;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
}

.col-grid-item{
	display: flex;
	flex-direction: column;
}

.col-grid-item > img{
	border-radius: 5px;
}

#instagram-embed{
	display: flex;
	background-color: #fff;
	width: 100%;
	padding: 50px 0;
	justify-content: center;
	align-items: center;
}

#neugierig{
	display: flex;
	flex-direction: column;
	width: 80%;
	color: #fff;
	padding: 100px 0;
	text-align: center;
}

#wannados {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #fff;
	padding: 100px 0;

}

#wannado-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 80%;
}

#wannado-grid > img{
    max-width: 100%;
	max-height: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

@media only screen and (max-width: 1300px){
	#home-logo{
		height: unset;
	}

	#wannado-grid > img{
		height: unset;
	}
}

