:root {
	--background: hsl(279, 70%, 25%);
	--background-dark: hsl(279, 70%, 15%);
	--color1: hsl(279, 70%, 25%);
	--color2: hsl(279, 70%, 15%);
	--color3: hsl(279, 70%, 20%);
	--color4: hsl(60, 100%, 60%);
	--color5: hsl(170, 80%, 50%);
	--color6: hsl(331, 90%, 50%);
	--color7: hsl(193, 90%, 65%);
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/poppins-v20-latin-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('/fonts/poppins-v20-latin-700.woff2') format('woff2');
}
html {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	background-color: var(--background);
	color: white;
	margin-bottom: 3em;
}
.hidden {
	display: none !important;
}
.content {
	max-width: 736px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.content {
		max-width: unset;
		margin: unset;
		padding: 0 1em;
	}
}

.content-intro {
	text-align: center;
	padding-top: 3em;
}
.logo {
	max-width: 36em;
}
.message {
	text-align: center;
	font-size: 2em;
	font-weight: 700;
	color: var(--color4);
	background-color: var(--color2);
	border-radius: 1em;
	line-height: 1.2em;
	padding: 1em;
	box-shadow: rgba(0,0,0,0.3) 0 0.25em 0.5em;
}
@media (max-width: 600px) {
	.message {
		font-size: 1.5em;
		padding: 0.75em;
	}
}
.style1 {
	margin-top: -20px;
	transform: rotate(-3deg);
	color: var(--color6);
}
.style2 {
	margin-top: -20px;
	transform: rotate(3deg);
	color: var(--color7);
}
.style3 {
	margin-top: -10px;
	transform: rotate(-1deg);
}
.style4 {
	background-color: var(--color4);
	color: var(--color2);
	margin-top: -10px;
	transform: rotate(1deg);
	position: relative;
}
.style4 a {
	text-decoration: none;
	color: var(--color1);
}
.style4 .cliquez-ici {
	font-size: 0.5em;
	line-height: 1em;
	margin-top: 0.2em;
}
.style4 img {
	position: absolute;
	width: 112px;
	top: calc(50% - 46px);
	animation-name: fleche;
	animation-duration: 0.7s;
	animation-iteration-count: infinite; 
}
@keyframes fleche {
	0% {
		left: -20px;
	}
	50% {
		left: 20px;
	}
	100% {
		left: -20px;
	}
}
@media (max-width: 600px) {
	.style4 img {
		width: 72px;
		top: calc(50% - 30px);
	}
}
.affichettes {
	text-align: center;
	margin-top: 5em;
}
.affichettes img {
	width: 100%;
	max-width: 600px;
}
.style5 {
	font-size: 1.5rem;
	background-color: var(--color5);
	color: var(--color2);
	margin-top: -3em;
	transform: rotate(-1deg);
}
.style5 a {
	text-decoration: none;
	color: var(--color1);
}
.style5 .cliquez-ici {
	font-size: 0.6em;
	line-height: 1em;
	margin-top: 0.2em;
}
.capsules {
	font-size: 1.25rem;
	line-height: 1.25em;
	margin-top: 1em;
	width: 100%;
	display: grid;
	gap: 1em;
	grid-template-columns: repeat(3, 1fr);
}
.capsules > * {
	grid-column-end: span 1;
}
.capsules img {
	margin-top: 0.5em;
	cursor: pointer;
}
@media (max-width: 600px) {
	.capsules {
		font-size: 0.9rem;
	}
}
#audio {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	background: var(--background-dark);
}
#audio > div {
	padding: 1em;
	width: calc(100% - 2em);
	height: calc(100% - 2em);
	max-width: 300px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1em;
	justify-content: center;
	text-align: center;
}
#audio img {
	border-radius: 1em;
	flex-grow: 0;
}
#audio audio {
	width: 100%;
}
#close {
	cursor: pointer;
	padding: 0.2em 1em;
	border-radius: 0.5em;
}
#close:hover {
	background-color: var(--color1);
}
.partenaires {
	margin: 6em auto 0;
	padding: 1em;
	max-width: 736px;
}
.createurs {
	margin: 3em auto 0;
	padding: 1em;
	max-width: 736px;
}
.partenaires > div:first-child,
.createurs > div:first-child {
	text-align: center;
	margin-bottom: 1.5em;
}
.partenaires > div:last-child,
.createurs > div:last-child {
	display: flex;
	gap: 2em;
	justify-content: center;
	align-items: center;
}
.partenaires > div:last-child > *,
.createurs > div:last-child > * {
	width: calc(100% / 3);
}
