
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	font-family: Inter, sans-serif;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

a {
	text-decoration: none;
	color: #000;
}

#presentations {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	overflow: hidden;
	position: relative;
}

#slides {
	display: flex;
	animation: presentationScroll 20s linear infinite;
	animation-delay: 2s;
}

.presentation {
	width: 100%;
	flex-shrink: 0;
}

#pause:checked ~ #slides {
  animation-play-state: paused;
}

#pause:checked ~ #paused {
	display: none;
}

#pause:checked ~ #running {
	display: initial;
}

#running {
	display: none;
}

#chaussures {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

#chaussures a {
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 15%;
}

#chaussures a img {
	width: 100%;
}

@keyframes presentationScroll {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(-100%);
	}
	75% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(-200%);
	}
}