@charset "UTF-8";
/* CSS Document */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	max-height: 100vh; /*la hauteur est fixée à celle de l'élément contenu dans le body*/
}

.slide{
	width: 100vw;
	height: 100vh;
	display: flex;/*les boîtes s'organisent les unes vis à vis des autres et non plus selon le flux html*/
	justify-content: center;
	align-items: center;
}

.one{
	width: 100vw;
	min-height: 100vh;
	background-image: url("img/specimen.png");
	background-size: cover;
	background-position: center;
}

.two{
	width: 100vw;
	min-height: 100vh;
	background-image: url("img/mirage.png");
	background-size: cover;
	background-position: center;
}

.three{
	width: 100vw;
	min-height: 100vh;
	background-image: url("img/matricielles.png");
	background-size: cover;
	background-position: center;
}

.four{
	width: 100vw;
	min-height: 100vh;
	background-image: url("img/sanstitre.png");
	background-size: cover;
	background-position: center;
}

.five{
	width: 100vw;
	min-height: 100vh;
	background-image: url("img/formesvivantes.png");
	background-size: cover;
	background-position: center;
}

.scroll_horizontal{
	display: flex;
	flex-direction: row;
	width: 500vw; /* !!!!!!!!!!!!! pour 3, mais changer pour les 5 images*/
	transform: rotate(90deg) translateY(-100vh);
	transform-origin: top left;
}

.container{
	width: 100vh;
	height: 100vw;
	transform: rotate(-90deg) translateX(-100vh);
	transform-origin: top left;
	overflow-x: hidden;
}

/*supprimer barre de navigation*/
::-webkit-scrollbar{
    display: none;
    }

/*réglage du bouton et titre*/
.bouton_content{
	display: flex;
	flex-direction: column;
}

.bouton{
	display: flex;
	justify-content: center;
}

a{
	text-decoration: none;
	padding: 18px 36px;
	margin: 10px;
	border-radius: 30px;
}

.specimen_couleur{
	background: rgba(91, 0, 0, 0.70);
}

.mirage_couleur{
	background: rgba(163, 55, 166, 0.70);
}

.matricielles_couleur{
	background: rgba(76, 105, 255, 0.70);
}

.sans_titre_couleur{
	background: rgba(99, 185, 69, 0.70);
}

.formes_vivantes_couleur{
	background: rgba(211, 178, 40, 0.70);
}

.modal1{
	width: 100vw;
	height: 100vh;
	position: absolute;
	left: 0;
	background: rgba(91, 0, 0, 0.30);
	display: flex;
	/*masquer la fenêtre modale avant qu'elle n'apparaisse*/
	visibility: hidden;
	opacity: 0;
}

/*target pour indiquer au navigateur d'afficher l'ancre #demo*/
.modal1:target{
	visibility: visible;
	opacity: 1;
}

.modal1_content{
	width: 33vw;
	height: 33vh;
	background: rgba(91, 0, 0);
	padding: 6em 5em 15em;
	position: relative;
	margin: auto;
	border-radius: 40px;
}

.modal1_close{
	position: absolute;
	left: 170px;
	top: 0.5px;
	color: white;
	background: none;
	border: none;
	font-size: 60px;
	font-weight: 100;
}

.modal2{
	width: 100vw;
	height: 100vh;
	position: absolute;
	left: 100vw;
	background: rgba(163, 55, 166, 0.20);
	display: flex;
	/*masquer la fenêtre modale avant qu'elle n'apparaisse*/
	visibility: hidden;
	opacity: 0;
}

/*target pour indiquer au navigateur d'afficher l'ancre #demo*/
.modal2:target{
	visibility: visible;
	opacity: 1;
}

.modal2_content{
	width: 33vw;
	height: 33vh;
	background: rgba(163, 55, 166);
	padding: 6em 5em 15em;
	position: relative;
	margin: auto;
	border-radius: 40px;
}

.modal2_close{
	position: absolute;
	left: 170px;
	top: 0.5px;
	color: white;
	background: none;
	border: none;
	font-size: 60px;
	font-weight: 100;
}

.modal3{
	width: 100vw;
	height: 100vh;
	position: absolute;
	left: 200vw;
	background: rgba(76, 105, 255, 0.20);
	display: flex;
	/*masquer la fenêtre modale avant qu'elle n'apparaisse*/
	visibility: hidden;
	opacity: 0;
}

/*target pour indiquer au navigateur d'afficher l'ancre #demo*/
.modal3:target{
	visibility: visible;
	opacity: 1;
}

.modal3_content{
	width: 33vw;
	height: 33vh;
	background: rgba(76, 105, 255);
	padding: 6em 5em 15em;
	position: relative;
	margin: auto;
	border-radius: 40px;
}

.modal3_close{
	position: absolute;
	left: 170px;
	top: 0.5px;
	color: white;
	background: none;
	border: none;
	font-size: 60px;
	font-weight: 100;
}

.modal4{
	width: 100vw;
	height: 100vh;
	position: absolute;
	left: 300vw;
	background: rgba(99, 185, 69, 0.30);
	display: flex;
	/*masquer la fenêtre modale avant qu'elle n'apparaisse*/
	visibility: hidden;
	opacity: 0;
}

/*target pour indiquer au navigateur d'afficher l'ancre #demo*/
.modal4:target{
	visibility: visible;
	opacity: 1;
}

.modal4_content{
	width: 33vw;
	height: 33vh;
	background: rgba(99, 185, 69);
	padding: 6em 5em 15em;
	position: relative;
	margin: auto;
	border-radius: 40px;
}

.modal4_close{
	position: absolute;
	left: 170px;
	top: 0.5px;
	color: white;
	background: none;
	border: none;
	font-size: 60px;
	font-weight: 100;
}

.modal5{
	width: 100vw;
	height: 100vh;
	position: absolute;
	left: 400vw;
	background: rgba(211, 178, 40, 0.20);
	display: flex;
	/*masquer la fenêtre modale avant qu'elle n'apparaisse*/
	visibility: hidden;
	opacity: 0;
}

/*target pour indiquer au navigateur d'afficher l'ancre #demo*/
.modal5:target{
	visibility: visible;
	opacity: 1;
}

.modal5_content{
	width: 33vw;
	height: 33vh;
	background: rgba(211, 178, 40);
	padding: 6em 5em 15em;
	position: relative;
	margin: auto;
	border-radius: 40px;
}

.modal5_close{
	position: absolute;
	left: 170px;
	top: 0.5px;
	color: white;
	background: none;
	border: none;
	font-size: 60px;
	font-weight: 100;
}

h1{
	font-size: 3em;
	color: white;
}

.specimen_typo{
	font-family: 'Climate Crisis', cursive;
	font-weight: 400;
	text-align: center;
}

.mirage_typo{
	font-family: 'Unbounded', cursive;
	font-weight: lighter;
	text-align: center;
}

.matricielles_typo{
	font-family: 'Zen Dots', cursive;
	font-weight: 400;
	text-align: center;
}

.sans_titre_typo{
	font-family: 'UnifrakturMaguntia', cursive;
	font-weight: lighter;
	font-size: 4em;
	text-align: center;
}

.formes_vivantes_typo{
	font-family: 'Oi', cursive;
	font-weight: lighter;
	text-align: center;
}

h3{
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 400;
	color: white;
	padding-top: 15px;
	padding-bottom: 5px;
}

a{
	font-family: 'Lexend Exa', sans-serif;
	color: white;
}

p{
	font-family: 'Lexend Exa', sans-serif;
	font-size: 0.8em;
	font-weight: 300;
	color: white;
}