/* CSS Document */

/*Text und Buttons*/

.gallery-filter{
	text-align: center;
}

.gallery-filter button {
	display: inline-block;
	margin: 10px;
	padding: 14px 32px;
	background: #463979;
	border: none;
	color: white;
	border-radius: 40px;
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	transition: 0.3s;
	cursor: pointer;
}

.gallery-filter button a {
	text-decoration: none;
}

.gallery-filter button:hover{
	background: #aaaae0;
	color: #463979;
}

.gallery-filter button.active{
	background: #aaaae0;
	color: #463979;
}

/*Gallerie*/
.gallery-wrapper {
  	max-width: 1200px;
  	margin: 0 auto;
	padding: 20px;
	overflow: hidden;      
}
.gallery {
 	position: relative;
  	overflow: hidden;
}

.gallery-track {
 	display: flex;
  	gap: 20px;
  	overflow-x: auto;
	scrollbar-width: none;
	padding: 10px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery img {
  height: 200px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
}


