@charset "UTF-8";
/* CSS Document */
{
	margin:0 auto;
	padding:0;
	}
	
body{
	font-family: helvetica;
	background-color: #000;
	color: #fff;
	font-weight: lighter;
	letter-spacing: 0.1em;
	}
	
div#global {
	width:100%;
	height:auto;
	margin:0 auto;
	padding:0;
	background-color: #000;
	}
	
div#contenu{
	width:100%;
	height:auto;
	float: left;
	margin-left:100px;
}

div#contenu h1{
	font-size:90px;
	color: #fff;
	margin:0 0 60px 0;
}


div#contenu h2{
	font-size:70px;
	color: #fff;
	margin:0 0 10px 0;
	text-decoration:underline;
}

div#contenu h2 a{
	color: #fff;
	margin:0 auto;
	text-decoration:none;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  
  /*
  Nope =(
  margin-left: -25%;
  margin-top: -25%;
  */

  /* 
  Yep!
  */
  transform: translate(-50%, -50%);
  
  /*
  Not even necessary really. 
  e.g. Height could be left out!
  */
  width: 40%;
  height: 50%;
}

.underline{
	text-decoration:underline;
}