:before,
:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none
}

html {
	height: 100%;
	left: 0;
}

body {
	height: 100%;
	box-sizing: border-box;
	min-height: 100%;
	min-width: 100%;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: "Roboto", Sans-serif;
	background-color: #FFFFFF;
	font-size: 20px;
	font-weight: 300;
}

.main-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: #3a3a3a99;
	backdrop-filter: blur(4px);
}

h1 {
	width: calc(100% - 40px);
	display: block;
	text-align: center;
	color: #ffffff;
	font-weight: bold;
	font-style: normal;
	font-size: 45px;
	margin: 20px;
	font-family: "Roboto", Sans-serif;
	text-transform: uppercase;
}

.texte {
	text-align: center;
	margin: 40px 20px 20px 20px;
	color: #ffffff;
}

.texte a {
	color: #e53d3d;
}
.texte b {
	font-weight: 500;
}

.texte strong {
	font-weight: 700;
}

/* Faire une animation de zoom in et out très lente sur l'image de fond */
.bg-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	animation: zoomInOut 60s ease-in-out infinite;
	transform-origin: 50% 0%;
}

.bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes zoomInOut {
	0% {
		transform: scale(1) rotate(0);
	}
	50% {
		transform: scale(1.3) rotate(3deg);
	}
	100% {
		transform: scale(1) rotate(0);
	}
}
