/* 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." */

body {
  background-color: white;
  color: black;
  font-family: Cambria, Georgia, serif;
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
}

h1 {
  font-size: 1.88rem;
  border-bottom: 3px solid #696969;
}

h2 {
  text-align: left;
  font-size: 1.5rem;
  border-bottom: 3px solid #696969;
}

h3 {
  text-align: left;
  font-size: 1.25rem;
  border-bottom: 1px solid #696969;
  font-style: italic;
}

h4 {
  text-align: left;
  font-size: 1.25rem;
  border-bottom: 1px solid #696969;
  text-indent: 5%;
}

h5 {
  text-align: left;
  font-size: 1.25rem;
  border-bottom: 1px solid #696969;
  font-style: italic;
  text-indent: 5%;
}

#access {
  position: fixed;
  top: 2%;
  right: 2%;
  z-index: 100;
  background-color: #fff;
  border: 1px solid #696969;
  padding: 8px;
  border-radius: 15px;
}

#access-button {
  font-size: 1.2rem;
  display: inline-block;
}

#access-more {
  display: none;
}

/* @media screen and (max-width: 480px) {
  #main-wrapper {
    width: 95%;
  }
  
  #header-text {
    font-size: 2rem;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  #main-wrapper {
    width: 90%;
  }
  
  #header-text {
    font-size: 2rem;
  }
}

@media screen and (min-width: 769px) and  (max-width: 1024px) {
  #main-wrapper {
    width: 85%;
  }
  
  #header-text {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #main-wrapper {
    width: 80%;
  }
  
  #header-text {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1201px) {
  #main-wrapper {
    width: 75%;
  }
  
  #header-text {
    font-size: 3rem;
  }
} */

#main-wrapper {
  top: 2%;
  margin-left: 22%;
  width: 75%;
}

#navbar {
  width: 20%;
  position: absolute;
  top: 2%;
  left: 0;
  overflow: hidden;
}

#navbar-content {
  width: 80%;
  margin: 0 10%;
  word-wrap: break-word; /* necessary? */
}

#header-text {
  word-wrap: break-word; /* likely removable after media query is set up! */
  width: 80%;
  text-align: left;
  top: 0;
  left: 0;
  margin: 0 10%;
}

p.ip {
  text-indent: 5%;
}

.quotes {
  max-width: 90%;
  padding-left: 10%;
  border-left: 5px solid #808080;
}

.spoilers {
  width: 90%;
  margin: 8px auto;
}

.spoiler-box {
  width: 100%;
  display: none;
  border: 5px solid #808080;
  border-top: 0px;
  padding: 5px 8px;
  box-sizing: border-box;
}

.spoiler-title {
  width: 100%;
  appearance: none;
  margin: auto;
  display: block;
  background-color: #fff;
  color: #000;
  border: 5px solid #808080;
  padding: 5px;
  box-sizing: border-box;
  line-height: 0;
}

.spoiler-title:hover {
  cursor: pointer;
}

.content-warning {
  width: 80%;
  margin: auto;
  /* background-color: #fff;
  color: #000; */
  padding: 5px;
  box-sizing: border-box;
  border: 5px solid #808080;
  text-align: center;
}

p.content-warning-title {
  font-size: 1.1rem;
  font-weight: bold;
}

p.content-warning-content {
  width: 100%;
  padding-bottom: 10px;
}

.img-no-wrap {
  width: 100%;
  margin: auto;
  display: block;
}

.img-no-wrap img {
  min-height: 3rem;
  max-height: 90%;
  width: auto;
  display: block;
  margin: auto;
}

.img-wrap, .img-wrap-right {
  max-width: 35%;
  height: auto;
}

.img-wrap {
  float: left; 
  margin-right: 1rem;
}

.img-wrap-right {
  float: right; 
  margin-left: 1rem;
}

.img-wrap img, .img-wrap-right img {
  display: inline-block;
  max-width: 100%;
  display: block;
}

p.img-desc {
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}