#Reading-progress {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 2px;
  margin: 0px;
  left: 0px;
  z-index: 99;
}
.bar {
  height: 2px;
  background: var(--main);
  position: fixed;
  top: 0px;
  z-index: 99;
  box-shadow: 0 0 15px #0000009c;
}
.article{
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 2em;
  max-width: calc(100% - 2em);
}
.gallery{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.gallery img{
  width: 100%;
}
.gallery figure{
  margin: 0;
}
.gallery figure a{
  display: grid;
}
.gallery figure:first-child{
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}
.back{
  background: var(--main);
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  display: inline-block;
  transition: .15s ease transform, .15s ease box-shadow;
}
.back:focus,.back:hover{
  -webkit-transform:translateY(-1px);
  transform:translateY(-1px);
  /* -webkit-box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025);
  box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025); */
  -webkit-box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08);
  box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08)
}
.back img{
  height: 24px;
  vertical-align: text-top;
}
@media only screen and (max-width: 1000px){
  .article p, .article div{
    grid-column: 1/3;
  }
}
@media screen and (max-width: 600px) {
  .gallery figure:first-child{
    grid-column-start: 1 !important;
    grid-column-end: 7 !important;
  }
  .gallery figure:nth-child(even), .gallery figure:nth-child(odd){
    grid-column: 1/4;
  }
}
