/********** CSS Resets **********/

* { box-sizing: border-box; }

h1, h2, h3, p, ul, ol {
	margin: 0;
	padding: 0;
}

nav ul, nav ol { list-style-type: none; }

a { text-decoration:none;}

img { max-width:100%; }

/********** End CSS Resets **********/

body {
	background: url(images/bg.jpg);
	font-family: Abel, sans-serif;
	color: #666;
}

p {margin-bottom: 1em;}

a {color:#5d9bb6;}

.container {
    position: relative;
}

header {
	background:#fff;
	padding:10px 15px 10px 0;
	
}

#top {
	background: #e1e1e1;
	margin-bottom: 50px;
	padding: 30px 0;
}

#middle {
	background: #707070;
	margin-bottom: 50px;
	padding: 30px 0;
}

article {
	padding: 0 15px;
}

#logo {
	position: relative;
	margin-bottom: 20px;
}
	
#logo img {
	width: 120px;
}
	
#logo h1 {
	font-size: 30px;
	color: #000;
	position: absolute;
	top: 45px;
	left: 40px;
	font-weight: 500;
}
	
#logo h2 {
	font-size: 24px;
	top: 50px;
	left: 125px;
	color: #e00101;
	position: absolute;
	font-weight: 500;
}

#ticket {
	position: absolute;
	top: 85px;
	right: 0;
	width: 190px;
	display: block;
	background: #ebebeb;
	border-radius: 10px;
	color: #666;
	text-decoration: none;
	padding: 15px 15px;
}

#ticket h2 {
	font-size: 18px;
	width: 150px;
	text-align: right;
	font-weight: 500;
}

#ticket h3 {
	transform: rotate(-90deg);	
	color: #e00101;
	position: absolute;
	bottom: 16px;
	left: -3px;
	font-size: 18px;
	font-weight: 500;
}

#top p {
	font-size:16px;
	line-height:1.3em;
}

.highlight {
	color:#e00101;
}

#middle h2 {
	color: #afe0f5;
	font-size: 24px;
	padding: 0 0 30px 15px;
}

#middle h3 {
	color: #f6fb6c;
	font-size: 24px;
	margin-bottom: .3em;
}

#middle p {
	color: #e3e3e3;
	line-height: 1.5em
}

.row {
	margin-bottom: 20px;
}

footer {
	background: #e1e1e1;
	margin-bottom: 150px;
	padding: 30px 0;
}

footer p{
	line-height:1.2em;
}

footer h3 {
	font-size: 24px;
	color: #e00101;
	margin-bottom: .2em;
}

footer h4 {
	font-size: 16px;
	color: #e00101;
	margin-bottom: 1em;
}

@media only screen and (min-width:480px){
	#top p{
		font-size:20px;
	}

	.row{
		display:flex;
	}

	.row article{
		flex:1 50%;
	}

}

@media only screen and (min-width:768px){
	#top .container{
		display:flex;
	}

	#top .container article{
		flex:1 50%;
	}
	#top p {
		font-size: 24px;
	}
	#logo img{
		width:200px;
	}

	#logo h1{
		font-size:3rem;
		top:65px;
		left:65px;
	}

	#logo h2{
		font-size:36px;
		top:70px;
		left:220px;
	}

	#ticket{
		width:251px;
	}
	
	#ticket h2{
		font-size:30px;
		text-align: right;
		width: 150px;
		margin-left: 60px;
	}

	#ticket h3{
		font-size:36px;
		bottom:25px;
		padding: 5px 0px;
		
	}
	#middle .container{
		display:flex;
		flex-wrap:wrap;
	}

	#middle .container h2{
		flex:3 100%;
		font-size:48px;
	}

	#middle .container article{
		flex:1;
	}

	footer .container{
		display:flex;
	}

}

@media only screen and (min-width:960px){
	.container{
		width:960px;
		margin:auto;
	}
}