html, body, div, h1 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	height: 100%;
}

body {
	background-color: #34495e;
	margin: 0 auto;
	position: relative;
	line-height: 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}

h1 {
	text-align: center;
	color: #8cb2c8;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 24px;
	line-height: 48px;
	font-size: 29px;
}


/*-----*/
/* Boy */
/*-----*/

.boy {
	width: 560px;
	height: 445px;
	position: relative;
	margin: 50px auto 0px;
}

.boy .boy-tv {
	width: 498px;
	height: 445px;
	background-image: url("../images/boy.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color: transparent;
	background-size: 100%;
	position: absolute;
	left: 47px;
	z-index: 2;
}

.boy .antenna {
	width: 111px;
	height: 315px;
	position: absolute;
	background-image: url("../images/antenna.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-color: transparent;
	background-size: 100%;
	left: 20px;
	top: 9px;
	-moz-animation: antenna 0.5s ease-in-out 0s infinite normal;
	-moz-transform-origin: bottom;   
	-webkit-animation: antenna 0.5s ease-in-out 0s infinite normal;
	-webkit-transform-origin: bottom;	
	-o-animation: antenna 0.5s ease-in-out 0s infinite normal;
	-o-transform-origin: bottom;	
	-ms-animation: antenna 0.5s ease-in-out 0s infinite normal;
	-ms-transform-origin: bottom;	
	animation: antenna 0.5s ease-in-out 0s infinite normal;
	transform-origin: bottom;
}

@-moz-keyframes antenna {
	0% { -moz-transform:rotate(-1deg); }
	50% { -moz-transform:rotate(1deg); }
	100% { -moz-transform:rotate(-1deg); }
}

@-webkit-keyframes antenna {
	0% { -webkit-transform:rotate(-1deg); }
	50% { -webkit-transform:rotate(1deg); }
	100% { -webkit-transform:rotate(-1deg); }
}

@-o-keyframes antenna {
	0% { -o-transform:rotate(-1deg); }
	50% { -o-transform:rotate(1deg); }
	100% { -o-transform:rotate(-1deg); }
}

@-ms-keyframes antenna {
	0% { -ms-transform:rotate(-1deg); }
	50% { -ms-transform:rotate(1deg); }
	100% { -ms-transform:rotate(-1deg); }
}

@keyframes antenna {
	0% { transform:rotate(-1deg); }
	50% { transform:rotate(1deg); }
	100% { transform:rotate(-1deg); }
}

.screen {
	width: 105px;
	height: 78px;
	background-image: url("../images/screen.gif");
	background-repeat: no-repeat;
	background-position: left top;
	background-color: transparent;
	background-size: 100%;
	position: absolute;
	right: 77px;
	bottom: 77px;
}


/*------------*/
/* Responsive */
/*------------*/

@media (max-width: 560px) {
	h1 {
		line-height: 24px;
		font-size: 22px;
	}

	.boy {
		width: 370px;
		height: 328px;
	}

	.boy .boy-tv {
		width: 300px;
		height: 326px;
	}

	.screen{
		width: 63px;
		height: 78px;
		right: 46px;
		bottom: 16px;
	}

	.boy .antenna {
		width: 81px;
		height: 230px;
		left: 18px;
		top: 32px;
	}
}