#box {
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	background: #ffe591;

	#ask {
		width: 100%;
		height: 1000px;
		background-color: #47bad6;
		font: bold 32px "Futura";
		padding-bottom: 20px;
		h1 {
			padding: 70px 0 50px 0;
			margin: 0;
			font-size: 32px;
		}
		.ans {
			color: black;
			text-decoration: none;
			padding: 10;
			display: block;
			cursor: pointer;
		}
		.ans:hover {
			color: white;
		}
		.player {
			.object {
				width: 200px;
				height: 200px;
			}
			h1 {
				color: white;
				padding-bottom: 10px;
			}
			.fb, .tw {
				width: 200px;
				height: 50px;
				display: inline-block;
			}
			.fb {
				background: url('../images/fb.png') no-repeat center center;
			}
			.fb:hover {
				cursor: pointer;
				background: url('../images/fb_hover.png') no-repeat center center;
			}
			.tw {
				background: url('../images/twitter.png') no-repeat center center;
			}
			.tw:hover {
				cursor: pointer;
				background: url('../images/twitter_hover.png') no-repeat center center;
			}

		}
		.button {
			height: 100px;
			margin: auto;
			background: url('../images/button.png') no-repeat center center;
		}
		.button:hover {
			cursor: pointer;
			background: url('../images/button_hover.png') no-repeat center center;
		}
	}
}