#BackButton{
  height: 5vh;
  font-size: 5vh;
}
#BackButton p{
  margin: 0;
}
#ComicBox{
  height: 80vh;
  width: 80vw;
  margin: auto;
}
#ComicBox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#ComicNavBox{
  height: 10vh;
  width: 30vw;
  padding-top: 20px;
  margin: auto;
  font-size: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media only screen and (max-width: 600px) {
  #BackButton{
    height: 5vh;
    font-size: 5vh;
  }
  #BackButton p{
    margin: 0;
  }
  #ComicBox{
    height: 80vh;
    width: 100vw;
    margin: auto;
  }
  #ComicBox img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #ComicNavBox{
    height: 10vh;
    width: 95vw;
    padding-top: 0;
    margin: auto;
    font-size: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}