@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('/style/webfonts/poppins-v22-latin-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 400;
	src: url('/style/webfonts/poppins-v22-latin-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('/style/webfonts/poppins-v22-latin-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 700;
	src: url('/style/webfonts/poppins-v22-latin-700italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 900;
	src: url('/style/webfonts/poppins-v22-latin-900.woff2') format('woff2');
}
html {
	margin: 0;
	font-family: 'Poppins', sans-serif;
}
body {
	margin: 0;
	overflow: hidden;
}
@media (max-width: 599px) {
	html {
		font-size: 16px;
	}
}
@media (min-width: 600px) {
	html {
		font-size: 20px;
	}
}
@media (min-width: 768px) {
	html {
		font-size: 24px;
	}
}
@media (min-width: 1024px) {
	html {
		font-size: 30px;
	}
}
@media (min-width: 1180px) {
	html {
		font-size: 40px;
	}
}
@media (min-width: 1366px) {
	html {
		font-size: 50px;
	}
}
@media (min-width: 1920px) {
	html {
		font-size: 60px;
	}
}


h1 {
	font-size: 3em;
	font-weight: 700;
	margin: 0.5rem 0;
	line-height: 1.15em;
}
h2 {
	font-size: 2em;
	font-weight: 700;
	margin: 0.5rem 0;
	line-height: 1.15em;
}
h3 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0.5rem 0;
	line-height: 1.15em;
}
p {
	font-size: inherit;
	margin: 1em 0;
	line-height: 1.25em;
}
ul, ol {
	margin: 0.5em 0;
	padding-left: 1.5em;
}
li {
	line-height: 1.25em;
	margin: 0.3em 0;
}
.smallText {
	font-size: 0.9em;
}
.smallerText {
	font-size: 0.8em;
}


#utilisation {
	background-color: hsl(219, 10%, 45%);
	color: black;
	width: 100vw;
	height: 100dvh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	column-gap: 2em;
	row-gap: 2em;
	position: absolute;
}
#utilisation > div {
	display: flex;
	justify-content: center;
	gap: 6px;
}
#utilisation > div:last-child {
	width: 100%;
}
#utilisation img {
	width: 100px;
}
#start {
	background-color: black;
	color: white;
	font-weight: 700;
	padding: 0.25em 1em;
	border-radius: 0.5em;
	cursor: pointer;
	font-size: 24px;
}
@media (orientation: portrait) {
	#utilisation {
		flex-direction: column;
	}
	#utilisation .desktop {
		display: none;
	}
}


#presentation {
	color: white;
	width: 100vw;
	height: 100dvh;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}
section {
	padding: 2rem;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
section > * {
	text-align: center;
}
section img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
section > *:first-child {
	margin-top: 0;
}
section > *:last-child {
	margin-bottom: 0;
}
section a {
	color: inherit;
	text-decoration: underline;
}
section.alignLeft,
section.alignLeft > * {
	align-items: flex-start;
	text-align: left;
}
section.alignCenter,
section.alignCenter > * {
	align-items: center;
	text-align: left;
}
section.noMargin {
	padding: 0;
}
/*section.center {
	align-items: center;
}
section.center > * {
	align-items: center;
	text-align: center;
}*/

