/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@media screen and (min-width: 768px) {
  .char_who {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hide_on_pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hide_on_mobile {
    display: none;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

body {
  background-color: black;
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  /*margin-left: 3%;
  margin-top: 3%;*/
}

.footer {
  border-top: 4px solid;
  
  margin-top: 40px;
  margin-bottom: 0;
  margin-left: -8px;
  margin-right: -8px;
  
  padding-left: 24px; /* add 8px to these*/
  padding-right: 24px; /* add 8px to these*/
  padding-top: 30px;
  padding-bottom: 30px;
}

.image-container {
  width: 100%;
  image-rendering: optimizeSpeed;
  border: 1px solid;
}

.image-container_no_border {
  width: 100%;
  image-rendering: optimizeSpeed;
  /*border: 1px solid;*/
}

.next_chapter_container {
  display: block;
  width: 65%;
  image-rendering: optimizeSpeed;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10%;
}