/* Personnalisation loader */

.loader {
	z-index: 50;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
}

#percent {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	font-family: 'Montserrat';
	font-size: 190px;
	color: lightyellow;
	mix-blend-mode: difference;
}

#bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

#barconfirm {
	width: 0%;
	height: 100vh;
	background: #1b1b1b;
}

.main-page {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	font-family: 'Kenoky';
}

.content {
	display: flex;
	z-index: 50;
	position: absolute;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	color: #1b1b1b;
	background: #fff;
}

.content h1 {
	text-transform: uppercase;
	font-family: 'Monument';
	font-size: 100px;
	font-weight: lighter;
}

.content h2 {
	margin-top: 30px;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 30px;
	font-weight: lighter;
}

@media screen and (max-width:768px) {
	#percent {
		font-size: 120px;
	}

	.content h1 {
		text-align: center;
		font-family: 'Montserrat';
		font-size: 50px;
		font-weight: bold;
	}

	.content h2 {
		text-align: center;
		font-size: 16px;
	}
}