html{
	background:url(start.jpg) no-repeat center fixed;
	-webkit-background-size: cover; /* pour anciens Chrome et Safari */
  	background-size: cover; /* version standardisée */
  	height:100%;
  	padding:0;
}
body{
	height:100%;
	background-color:rgba(0,0,0,0.3);
	padding:0;
	margin:0;
}


.wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10
}

.snow {
    opacity: 0.1;
    content: ' ';
    display: block;
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url(themes/wdd/img/neige.gif);
    text-align: center;
}
h1{
	font-family: "Trade Winds";
	margin-top:0;
	color:rgba(255,255,255,0.7);
	font-size: 5em;

	border-bottom:3px solid rgba(255,255,255,0.5);
	padding-bottom:25px;
	font-weight: normal;
}
h2{
	font-family: "Trade Winds";
	color:rgba(255,255,255,0.9);
	text-shadow:0 0 2px rgba(0,0,0,0.4);
	font-size: 1.2em;
	font-weight: normal;
}
a{
	opacity:0.5;
	width:64px;
	display:inline-block;
	color:white;
	text-decoration: none;
	font-family: "Trade Winds";
	font-size: 1em;
	transition:opacity 500ms;
	padding:20px;
}
img{
	width:100%;
	height:auto;
}
a span{

}
a:hover, a:hover span{opacity:0.9;transition:opacity 500ms;}

@media (max-width: 900px){
	h1{font-size: 4em;}
	a{width:48px;}
}
@media (max-width: 800px){
	h1{font-size: 3em;}
	a{width:48px;}
}