/* CSS Sheet powered by PUShAUNE http://www.pushaune.com */
/* Reset sheet http://meyerweb.com/eric/tools/css/reset/ */

/* --------------------------------------------- RESET SHEET */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;}

/* --------------------------------------------- Here it goes */
*,
*:after,
*:before{
	box-sizing: border-box;
}
::selection {
    background: #fff;
    color:#000;
}
::-moz-selection {
    background: #fff;
    color:#000;
}
body{
	background: #000;
	color: #fff;
	font-family: arial;
	text-align: center;
}
h1, h2{
	text-align: center;
	width: 100%;
	display: block;
	text-transform: uppercase;
}
h1{
	font-size: 40px;
	margin-bottom: 25px;
	padding-top: 100px;
	font-weight: bold;
}
h2{
	font-size: 16px;
	margin-bottom: 50px;
}
form{
	width: 500px;
	margin: auto;
	display: block;
	max-width: 100%;
}
input{
	display: block;
	height: 50px;
	font-size: 22px;
	font-weight: 700;
	padding: 0 12px;
	margin-bottom: 15px;
	width: 100%;
}
button {
	appearance: none;
	background: transparent;
	display: block;
	width: 100%;
	cursor: pointer;
	border: 3px solid #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	border-radius: 0;
	padding: 10px 30px;
	box-shadow: none;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s ease;
}
#bck{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url("images/fond.gif");
	background-size: cover;
	background-position: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
	z-index: -1; /* reste derrière le contenu */
	filter: invert(100%) hue-rotate(180deg);
}