/* Sélection  --------------------*/
::-moz-selection {
 background: #FFFFFF;
 color: #000000;
}
::selection {
 background: #FFFFFF;
 color: #000000;
}
a, a:focus {
	outline: 0;
	outline-color: #FFFFFF;
}
::-moz-focus-inner {
 border:0;
 outline-color:#FFFFFF;
}
/* Main  --------------------*/
html {
    background: #000000;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}
body {
	background: #000000 url('../img/bg.jpg') no-repeat 10% center;
	background-size: auto 100%;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	animation: widthlogo 10s infinite; 
	-moz-animation: widthlogo 10s infinite;
	-webkit-animation: widthlogo 10s infinite;
	-o-animation: widthlogo 10s infinite;
}
.main {
	background: #000000 url('../img/main.png') no-repeat 10% top;
	background-size: 100% auto;
	width: 50%;
	height: 80%;
	position: fixed;
	right: 0;
	top: 0;
	margin-right: 5%;
	margin-top: 20%;
	max-width: 380px;
	cursor: pointer;
}
/* Animation Keyframes*/
@keyframes widthlogo {
    0% { height: 100%; }
    50% { height: 86%; }
    100% { height: 100%; }
}

@-moz-keyframes widthlogo {
    0% { height: 100%; }
    50% { height: 86%; }
    100% { height: 100%; }
}

@-webkit-keyframes widthlogo {
    0% { height: 100%; }
    50% { height: 86%; }
    100% { height: 100%; }
}

@-o-keyframes widthlogo {
    0% { height: 100%; }
    50% { height: 86%; }
    100% { height: 100%; }
}
/* Responsive*/
@media only screen and (max-width: 720px) {
.main {
	width: 60%;
}
}