/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
  padding: 0 5vw;
}

html * {
  font-family: "futura-pt", futura, Helvetica, Arial, sans-serif;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  padding: 5vw 0;
}

.header .title {
  display: inline-block;
  font-weight: bold;
  font-size: 42px;
  text-transform: uppercase;
}

.header .contact {
  display: block;
  float: right;
  padding: 12px 0;
  text-align: right;
}

.header .contact .link {
  color: #222;
  text-transform: uppercase;
}

.comic-title {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 50px;
}

.comic-image{
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.section-title{padding: 20px 0;text-transform: uppercase;}
.fancy {
  line-height: 0.5;
  text-align: center;
}
.fancy span {
  display: inline-block;
  position: relative;
}
.fancy span:before,
.fancy span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid #222;
  border-top: 1px solid #222;
  top: 0;
  width: 100px;
}
.fancy span:before {
  right: 100%;
  margin-right: 15px;
}
.fancy span:after {
  left: 100%;
  margin-left: 15px;
}

.comics-list {
  display: block;
  list-style: none;
  margin: 0 auto;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.comics-list .comic-listing {
  background: #fafafa;
  cursor: pointer;
  padding: 5px;
  width: 160px;
  height: 50px;
  margin: 5px;
  line-height: 50px;
  text-align: center;
}
.comics-list .comic-listing:hover,
.comics-list .comic-listing.active {
  background: #f0f0f0;
}


@media only screen and (max-width:600px){
  .header .title,
  .header .contact {
    display: block;
  }
  .header .title {
    text-align: center;
  }
  .header .contact {
    float: none;
    text-align: center;
  }
  .comics-list .comic-listing {
    width: 100%;
  }
}
