html {
  overflow-y: scroll;
}

.flexcontainer {
  display: flex;
  background-color: rgb(191, 239, 255);
}

.flexsection {
  flex: 1 1 auto;
  padding: 5px;
  border: 1px solid #000000;
  text-align: center;
}

.banner-container {
  width: 100%;
}

.banner-container img {
  display: block;
  width: 100%;
  height: auto;
}

.nav_top_enabled {
  font-family: sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: #000000;
  margin-top: 0;
  margin-bottom: 0.1em;
  text-align: left;
  padding: 2px 0;
}

nav .nav_top_enabled + .nav_top_enabled {
  border-top: 1px solid rgba(0, 0, 0, .75);
}

img {
  max-width: 100%;
  height: auto;
}

.content {
  text-align: left;
  margin: 30px;
  max-width: 980px;
}

.book-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 30px;
}

.book-image {
  flex: 0 0 auto;
  width: min(320px, 28%);
}

.book-cover {
  display: block;
  border: 1px solid rgba(0, 0, 0, .25);
}

.book-text {
  flex: 1;
  text-align: left;
}

p,
li,
td,
th {
  font-family: sans-serif;
  color: #000000;
  font-size: 1.2em;
}

h1 {
  font-family: sans-serif;
  color: #0000C0;
  font-size: x-large;
}

h2 {
  font-family: sans-serif;
  color: #0000C0;
  font-size: large;
}

.book-links {
  margin-top: 0;
}


.anthology-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}

.anthology-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.anthology-cover {
  width: 120px;
  height: auto;
  border: 1px solid #000000;
  flex: 0 0 auto;
}

.anthology-text p {
  margin: 0 0 6px 0;
}

.site-footer {
  margin-top: 70px;
  padding: 32px 24px;
  background-color: #4a2f2a;
  border-top: 4px solid #b56a4f;
  color: #f3e6dc;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.22);
  width: 100%;
  box-sizing: border-box;
}

.site-footer .footer-block {
  min-width: 220px;
}

.site-footer h3 {
  margin: 0 0 14px 0;
  font-family: sans-serif;
  font-size: 1.05rem;
  color: #fff4ee;
  border-bottom: 1px solid rgba(243, 230, 220, 0.25);
  padding-bottom: 6px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 8px 0;
  color: #f3e6dc;
}

.site-footer a {
  color: #f3e6dc;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffcfb8;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .flexcontainer,
  .book-layout,
  .anthology-item,
  .site-footer {
    flex-direction: column;
  }

  .book-image {
    width: 100%;
    max-width: 320px;
  }

  .site-footer {
    gap: 28px;
    text-align: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 28px 20px;
  }
}
