.carousel {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.slides {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}


.slides > div {
	scroll-snap-align: start;
	flex-shrink: 0;
	width: 100%;
	margin-right: 50px;
	border-radius: 10px;
	background: #eee;
	transform-origin: center center;
	transform: scale(1);
	transition: transform 0.5s;
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
	}



.carousel .links a {
	display: inline-flex;
	width: 1.5rem;
	height: 1.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 1rem 0 0.5rem 0;
	position: relative;
}


/* Don't need button navigation */
@supports (scroll-snap-type) {
	.carousel .links {
		display: none;
	}
}
