/* comic css https://codepen.io/chris22smith/pen/MyBBOe/ */

html, body {
  margin:0;
  padding:0;
}
.sepia:target img {
    filter: sepia(1);
}
.contrasted-sepia:target img {
    filter: contrast(1.7) sepia(1);
}
.contrast:target img {
    filter: contrast(1.7);
}

.grayscale:target img {
    filter: grayscale(1);
}
.blur:target img {
    filter: blur(2px);
}
.drop-shadow:target img {
    filter: drop-shadow(0px 0px 24px white);
}
.hue-rotate:target img {
    filter: hue-rotate(90deg);
}
.saturate:target img {
    filter: saturate(1.7);
}

.narrow:target .panel {
  flex-basis: 512px;
}
.narrow:target .panel:nth-child(1) {
  flex-basis: 100%;
}

.wide:target .panel {
  flex-basis: 1023px;
}
.wide:target .panel:nth-child(1) {
  flex-basis: 100%;
}

.comic {
  display:flex;
  flex-wrap:wrap;
  font-family: Century Gothic, sans-serif;
  font-weight: bold;
  font-size: 16pt;
  padding:1vmin;
}

.panel {
  background-color: #000;
  text-align: center;
  border: solid 2px #000;
  box-shadow: 0 6px 6px -6px #000;
  display: inline-block;
  flex: 1 1;
  height: 511px; /*this makes a better print layout*/
  margin: 1vmin;
  overflow: hidden;
  position: relative;
  flex-basis: 512px;
}
.text {
  text-align: left;
  background-color:#fff;
  border:solid 2px #000;
  margin:0;
  padding:3px 10px;
}
.top-left {
  left:-6px;
  position:absolute;
  top:-2px;
  /*transform:skew(-15deg);*/
}
.bottom-right {
  bottom:-2px;
  position:absolute;
  right:-6px;
  /*transform:skew(-15deg);*/
}
.speech {
  background-color:#fff;
  border:solid 2px #000;
  border-radius:12px;
  display:inline-block;
  margin:.5em;
  padding:.5em 1em;
  position:relative;
}
.speech:before {
  border:solid 12px transparent;
  border-left:solid 12px #000;
  border-top:solid 12px #000;
  bottom:-24px;
  content:"";
  height:0;
  left:24px;
  position:absolute;
  width:0;
}
.speech:after {
  border:solid 10px transparent;
  border-left:solid 10px #fff;
  border-top:solid 10px #fff;
  bottom:-19px;
  content:"";
  height:0;
  left:27px;
  position:absolute;
  width:0;
}
.panel:nth-child(1) {
  flex-basis: 100%;
  height: 492px;
}
.panel:nth-child(1) img {
  float: left;
}
.panel:nth-child(1) > .top-left {
  font-size: 200%;
}
.foreword {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
a {
  color: #fff;
}
a:active {
  color: red;
}

.print-info, .foreword, .filters, .social-print, .social-web {
    font-size: 11pt;
    color: #fff;
}
.social-print {
  display: none;
}

@media print {
  .foreword {
    color: #000;
  }
  .panel {
    background-color: #fff;
  }
  .social-print {
    display: block;
  }
  .social-web {
    display: none;
  }
}
