* {
	margin: 0;
	padding: 0;
}

body {
	background-image: url("cream_pixels.png");
    background-repeat: repeat;
    background-size: 160px;
}

body, html {
	height: 100%;
}

.logo {
	display: block;
	margin: 50px auto 40px auto;
}

.wrapper {
	width: 600px;
	background: #fff;
	margin: 0 auto;
	overflow: hidden;
	min-height: 100%;
}

.castle {
	margin: 20px auto;
	width: 580px;
	height: 380px;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
	border-radius: 4px;
	border: 0px solid #eee;
	margin: 60px auto 30px auto;
}

.castle img {
	width: 100%;
}


.buttons {
	width: 400px;
	margin: 30px auto;
	overflow: hidden;
	max-width: 90%;

}

.button {
	font-family: 'Open Sans', sans-serif;
	border: 2px solid #007ea1;
	border-radius: 20px;
	display: inline-block;
	font-size: 14px;
	padding: 8px 16px;
	color: #007ea1;
	-webkit-font-smoothing: antialiased;
	text-transform: uppercase;
	 -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    background: white;
}

.left {
	float: left;
}

.right {
	float: right;
}

.button:hover {
	background: #007ea1;
	color: #fff;
}

.copyright {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	text-align: center;
	margin-top: 8px;
	color: #666;
}

@media (max-width: 800px) {
  	.wrapper { max-width: 90% }
  	.logo { max-width: 90% }
  	.castle { max-width: 100% }
}