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

h1, h2, h3, h4 {
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

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

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

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

.container {
    position: relative;
}

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

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



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

p {
    margin-bottom: 1em;
}

article {
    padding: 0 15px;
}

#top p {
    font-size: 18px;
    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;
}

#middle .container {
    margin-top: 10px;
}

.row {
    margin-bottom: 30px;
  }

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

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

footer p {
    line-height: 1.2em;
}

a {
    color: #5D9BB6;
    text-decoration: none;
}

#logo {
    position: relative;
    margin-bottom: 20px;
}

#logo img {
    width: 120px;
}

#logo h1 {
    font-size: 30px;
    color: #000000;
    position: absolute;
    top: 45px;
    left: 40px;
}

#logo h2 {
    font-size: 24px;
    color: #E00101;
    position: absolute;
    top: 50px;
    left: 125px;
}

#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;
}

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

#ticket:hover {
	background: #afe0f5;
}

/* MEDIA */

@media screen and (min-width: 480px) {
    #top .container {
        display: block;
    }

    #top p {
        font-size: 22px;
    }

    #middle h2 {
        font-size: 36px;
    }

    footer section {
        display: flex;
    }

}

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

    #logo img {
        width: 175px;
    }
    
    #logo h1 {
        font-size: 48px;
        top: 56px;
	    left: 56px;
    }

    #logo h2 {
        font-size: 36px;
        top: 64px;
	    left: 180px;
    }

    #ticket {
        top: 40px;
        width: 260px;
        display: flex;
        justify-content: end;
    }

    #ticket h2 {
        font-size: 28px;
        padding-right: 5px;
    }

    #ticket h3 {
        font-size: 36px;
        bottom: 25px;
    }

    #middle h2 {
        font-size: 42px;
    }
}

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

    #middle .container h2 {
        flex: 1 100%;
    }

    #middle .container article {
        flex: 1;
    }

    footer .container {
        display: flex;
    }
}

@media screen and (min-width: 960px) {
    header,
    #top,
    #middle,
    footer {
        width: 1000px;
        margin: auto;
        padding: 30px;
    }

    header,
    #top,
    #middle {
        margin-bottom: 50px;
    }

    footer {
        margin-bottom: 150px;
    }

    #top p {
        font-size: 26px;
        margin-bottom: 0;
    }

    #middle h2 {
        font-size: 48px;
    }

    #middle h3 {
        font-size: 26px;
    }
    
    #middle p {
        font-size: 18px;
    }

    footer h3 {
	    font-size: 26px;
    }

    footer h4,
    footer p {
        font-size: 18px;
    }
}