.reading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  overflow-y: scroll;

}

/* body{
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #3c3c3c;
} */

.reading-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 50px; */
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

.flex-align-center{
  display: flex;
  align-items: center;
}

.reading-header-inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.reading-header .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.reading-header .toc-button {
  position: absolute;
  top: 10px;
  left: 10px;
}

.toc-dropdown {
  position: fixed;
  top: 50px;
  left: 0;
  width: 300px;
  height: calc(100% - 50px);
  background-color: #f8f8f8;
  border-right: 1px solid #ddd;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding-left: .5rem;
  padding-top: 1rem;
}

.toc-dropdown.open {
  transform: translateX(0);
}

.reading-content {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 20px;
}

.reading-content-inner {
  max-width: 840px;
  width: 100%;
}

.center-text {
  text-align: center;
}

.reading-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.reading-footer-inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 840px;
  padding: 0 20px;
}

/* h1{
  padding: .25rem;
  margin: 0;
  font-size: 1.6rem;
} */

/* a{
  color: #3c3c3c;
  text-decoration: none;
} */

.footer-link{
  text-transform: uppercase;
  font-size: 0.9rem;
}

