@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font: 1em/1.5 Helvetica, sans-serif;
	background-color: #fff;
	min-width: 20rem;
}

a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
a:focus {
	outline: 1px dotted #000;
	outline-offset: 0.25em;
}

img {
	vertical-align: middle;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content {
	max-width: 60rem;
	margin: 0 auto;
}

@media only screen and (min-width: 40rem) {
	.grid {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.grid-column {
		padding: 0 1rem;
		flex: 1 1 33.33%;
	}
}
.grid-column:only-child {
	margin-left: auto;
	margin-right: auto;
}

.header {
	padding: 3.75rem 1rem 5.25rem;
	color: #fff;
	text-align: center;
	background-color: #ed4d5d;
}

.logo {
	display: block;
	margin: 0 auto;
	width: 11.25rem;
	height: 11.25rem;
}

.title {
	margin: 1.875rem auto 1.5rem;
}
.title img {
	width: 19.875rem;
	height: 3rem;
}
@media only screen and (max-width: 23.4375rem) {
	.title img {
		width: 17.125rem;
		height: 2.5625rem;
	}
}

.intro {
	max-width: 36.25rem;
	margin: 0 auto;
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 1.2857142857;
}
@media only screen and (max-width: 23.4375rem) {
	.intro {
		font-size: 1.25rem;
	}
}

.video {
	margin: 2.875rem auto 0;
	padding: 1.25rem;
	background-color: #fff;
	border-radius: 1.25rem;
	box-sizing: content-box;
	max-width: 35rem;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	background-color: #000;
}
.video-container iframe,
.video-container img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.video-link::after {
	content: "►";
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1), opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 3rem;
	margin: -1.5rem 0 0 -2.125rem;
	border: none;
	border-radius: 0.625rem/1.875rem;
	text-indent: 0;
	font-size: 1.625rem;
	line-height: 1;
	color: #fff;
	background: #212121;
	background: rgba(33, 33, 33, 0.8);
}
.video-link:hover::after {
	background-color: #f00;
}
.video-link::before {
	content: attr(title);
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 1.3125rem 0.75rem 4.375rem;
	overflow: hidden;
	color: #eee;
	font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
	font-size: 1.125rem;
	line-height: 1.3;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
	background-repeat: repeat-x;
	transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.video-link:hover::before {
	color: #fff;
}

.subscribe {
	padding: 3.625rem 1rem 3.125rem;
	color: #fff;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.5;
	background-color: #f38139;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="20" viewBox="0 0 50 20"><circle cx="25" cy="-5" r="25" fill="%23ed4d5d" /></svg>');
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 3.125rem 1.25rem;
}
@media only screen and (max-width: 23.4375rem) {
	.subscribe {
		font-size: 1rem;
	}
}
.subscribe p {
	max-width: 37.5rem;
	margin: 0 auto;
}
.subscribe a:focus {
	outline-color: #fff;
}

.icons-list {
	display: inline-flex;
	list-style: none;
	margin-bottom: 1.5rem;
}
.icons-list > li {
	padding: 0 1rem;
}
.icons-list img {
	width: 3rem;
	height: 3rem;
}

.main {
	flex-grow: 1;
	padding: 2.3125rem 1rem;
}
.main h2 {
	margin: 0 1rem 4.875rem;
	color: #ed4d5d;
	text-align: center;
	font-size: 2.25rem;
}
.main .grid {
	list-style: none;
}
@media only screen and (max-width: 59.9375rem) {
	.main .grid {
		max-width: 40rem;
		margin-left: auto;
		margin-right: auto;
	}
}
.main .grid-column {
	margin-bottom: 8rem;
	flex-grow: 0;
}

.zine {
	max-width: 20rem;
	margin: 0 auto;
	padding: 0 1rem;
	line-height: 1.25rem;
}

.zine-title {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5rem;
}

/* AJOUT ROTATION COUVERTURES */

.zine-img-link {
	position: relative;
	display: block;
	margin-top: 0.625rem;
	margin-bottom: 1.75rem;
	margin-left: -0.5rem;
	width: 15.625rem;
	height: 20rem;
	z-index: 1;
	box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
	transform: rotate(-3deg);
}
.zine-img-link::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0.5rem;
	background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.zine-img-link .zine-img {
	margin: 0;
	width: 15.625rem;
	height: 20rem;
}

/* FIN AJOUT ROTATION COUVERTURES */

.zine-img {
	margin-bottom: 0.5rem;
	margin-left: -1rem;
	width: 16.875rem;
	height: 21.875rem;
}

.zine .button {
	margin-top: 1.25rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9375rem 1.25rem;
	min-height: 3.125rem;
	color: #fff;
	font-weight: bold;
	line-height: 1.25rem;
	text-decoration: none;
	background-color: #ed4d5d;
	border-radius: 1.5625rem;
}
.button:hover {
	background-color: #bf4551;
}

.next {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 1rem;
}
@media only screen and (min-width: 40rem) {
	.next {
		min-height: 21.875rem;
		padding: 0;
	}
}

.next-title {
	font-size: 1.5rem;
	line-height: 1;
}

.footer {
	padding: 3.3125rem 1rem 3rem;
	background-color: #f5f5f5;
}
.footer .grid-column {
	padding-bottom: 1.5rem;
}
.footer h1 {
	font-size: 1rem;
}
.footer p:not(:last-child):not(:only-of-type) {
	margin-bottom: 1.5rem;
}
.footer ul {
	list-style: none;
}

.footer-dog {
	margin-top: 1.5rem;
	width: 6.25rem;
	height: 6.25rem;
}
@media only screen and (min-width: 40rem) {
	.footer-dog {
		margin-left: 1rem;
		margin-right: 1rem;
	}
}

/* AJOUT CLP */

.legende {
    margin-top:1rem;
}

.zine-img-empty {
	margin-bottom: 0.5rem;
	margin-left: -1rem;
	width: 16.875rem;
	height: 21.875rem;
    opacity: 0.3;
}