html {
	scroll-behavior: smooth;
}

body {
	background-color: #101823;
    background-image: url('../images/fond.svg');
    background-repeat: no-repeat;
	background-size: 101%;
	background-position: top;
	font-family: 'Montserrat', sans-serif;
	color: white;
}

/* Partie principale */
body > main {
	display: flex;
	flex-direction: row;
	justify-content:space-between;
}

/* Les deux sections */
body > main > section {
	display: inline-block;
}

/* Section gauche introduction */
body > main > section.left {
	width: 55%;
}

/* Barre de séparation */
body > main > section.left > img {
	display: block;
	width: 50%;
	height: auto;
	margin-left: 18%;
}

/* Texte de la section gauche */
body > main > section.left > div {
	font-weight: 300;
	font-size:13pt;
	line-height:2;
	margin: 15%;
}

/* Section droite simulation */
body > main > section.right {
	background-image: url('../images/bigbox.svg');
    background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	color: #070B0C;
	width: 40%;
	margin-right: 0%;
}

/* Bloc Simulation */
body > main > section.right > div {
	margin: 8%;
}

/* ID de la simulation */
body > main > section.right > div > h1 {
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: solid 3px;
}

/* Etiquette simulation */
body > main > section.right > div > div {
	background-image: url('../images/littlebox.svg');
    background-repeat: no-repeat;
	background-size: contain;
	background-position: left;
	margin-top: 2%;
	padding: 8% 6% 6% 8%;
}

/* Titre de la simulation */
body > main > section.right > div > div > h2 {
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-size: 18pt;
}

/* Texte de l'étiquette */
body > main > section.right > div > div > div:nth-of-type(1) {
	font-weight: 600;
	font-size: 8pt;
	padding-top: 6%;
	padding-bottom: 6%;
	line-height: 1.3;
}

/* Partie lien de l'étiquette */
body > main > section.right > div > div > div:nth-of-type(2) {
	display: block;
	text-align: right;
}

/* Lien de l'étiquette */
body > main > section.right > div > div > div:nth-of-type(2) > a {
	text-transform: uppercase;
	text-decoration: none;
	color: inherit;
	display: inline;
	
}

/* Découvrez du lien de l'étiquette */
body > main > section.right > div > div > div:nth-of-type(2) > a > span{
	vertical-align: middle;
	padding-right: 0.5rem;
	font-size: 12pt;
}

/* Flèche du lien de l'étiquette */
body > main > section.right > div > div > div:nth-of-type(2) > a > img {	
	width: 2%;
	vertical-align: middle;
}

::selection {
	background-color: #9D029E;;
}