* {
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

html {
	height: 100%;
	font-size: 62.5%;
	background: #000;
}

body {
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	text-align: center;
	font-family: Arial;
	color: #fff;
	display: grid;
	align-content: space-between;

}

/*  */
video {
	width: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
}

header {
	padding: 3vh 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
}

	#logo {
		width: 30%;
	}

	#minority {
		width: 5%;
		position: absolute;
		right: 4vw;
	}

.cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

	.cta a {
		background: #28a745;
		color: #fff;
		padding: 2vh 0;
		width: 40%;
		border-radius: 2px;
		margin: 1vh auto;
		font-size: 2rem;
		animation: cta .8s infinite linear;
	}

		@keyframes cta {
			0% { color: rgba(255 255 255 / 1); }
			50% { color: rgba(255 255 255 / 0); }
			100% { color: rgba(255 255 255 / 1); }
		}

	#tarif {
		font-size: 1.4rem;
	}

#iframe_wrapper {
	display: none;
	justify-content: center;
	align-items: center;
}

	iframe {
		height: 450px;
		border: none !important;
	}

#disclaimer {
	font-size: 1rem;
	padding: 2vh 2vw;
}

	#disclaimer a {
		color: #fff;
	}
