/*
---------------
--- Polices ---
---------------
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*
--------------
--- Commun ---
--------------
*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
button,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
select,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea, 
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
    border-radius: 0;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	color: #fff;
    letter-spacing: normal;
	line-height: normal;
	text-align: left;
}
body {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100vw;
	min-height: 100vh;
	overflow: hidden;
	background-color: #000;
}
img, 
video {
	display: block;
	object-fit: cover;
	object-position: center;
}

/*
-----------------------
--- Page chargement ---
-----------------------
*/
.page_chargement {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}


