@font-face {
	  font-family: "Futura Bold";
	  src: url(../fonts/Futura-Bold.otf);
	  font-weight: bold;
	}

*{margin:0;padding:0;}
body{background:#000;font-family:"Futura Bold";}

#bg{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(../images/background.png) no-repeat top center;
	background-size:cover;
}
.wrapper{
	position:relative;
	width:100%;
	min-width:400px;
	max-width:1400px;
	margin:0 auto;
	min-height: 800px;
}

.col{width:50%;float:left;}
.content {
	padding: 240px 100px 0 0;
}

.clear{clear:both;}

img{display:block;width:100%;}

#book {
	width: 500px;
	margin: 120px auto;
	position: relative;
}

.title{width:400px;}

.centered{text-align:center;}

.button {
	display: block;
	background: #ea1b10;
	color: #fff;
	padding: 14px 27px;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
	margin: 25px 0 0 90px;
	text-align: center;
	max-width: 130px;
	transition: all linear 0.2s;
	letter-spacing: 0.08em;
	font-size: 20px;
}

.button:hover{background:#b71108;}


@media screen and (max-width: 600px) {
	  .col{float:none;width:100%;}
	  #book {
		  max-width: 80%;
		  margin-bottom: 32px;
	  }
	  .content{padding:0 60px;}
	  .title {
		  display: block;
		  margin: 0 auto;
		  width: 100%;
	  }
	  .button {
		  margin: 30px auto 100px;
	  }
}

