/* Global CSS. */
 body {
  background-color: white;
  color: black;
  font-family: Helvetica;
  height: 90%;
  width: 90%;
  min-width: 400px;
  max-width: 900px;
  overflow-x: hidden;
  margin: 0 auto;
}
.body-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* Warning page. */
.warning-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.warning-image-content {
  max-width: 800px;
  max-height: 800px;
}
.warning-image-description {
  font-size: 12pt;
}

/* Navbar on every page. */
.navbar-container {
  border-bottom: 1pt solid black;
  position: relative;
}
.navbar-content {
  font-size: 1rem;
}
.navbar-table, .navbar-table tr, .navbar-table tr td {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Footer for navigation to homepage and top of current page. */
.footer-container {
  border-top: 1pt solid black;
  position: relative;
}
.footer-content {
  font-size: 1rem;
}
.footer-table, .footer-table tr, .footer-table tr td {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
}


/* Contact and home page. */
.contact-container {
  width: 100%;
  margin: 10px;
  font-family: Arial;
  font-size: 1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: justify;
  max-width: 80%;
  min-width: 200px;
}
.contact-header {
  text-align: center;
}
.contact-table, .contact-tr, .contact-td {
  padding-left: 0.25rem;
  padding-bottom: 0.25rem;
  padding-right: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


/* Commission page. */
.comm-container {
  width: 100%;
  margin: 10px;
  font-family: Arial;
  font-size: 1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: justify;
  max-width: 80%;
  min-width: 200px;
}
.comm-header {
  text-align:center;
}
/*
This ended up being a bit awkward so it's unused for now.
.price-container {
  width: 100%;
  margin: 10px;
  font-family: Arial;
  font-size: 1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: justify;
  max-width: 40%;
}

.price-table, .price-table tr, .price-table tr td {
  text-align: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-bottom: 1rem;
}
*/


/* Vault page. */
.library-container {
  width: 90%;
  margin: 10px;
  font-family: Arial;
  font-size: 1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: justify;
  max-width: 90%;
}
.library-header {
  text-align:center;
}
.library-table, .library-table tr, .library-table tr td {
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.library-thumbnail {
  max-height: 170px;
  max-width: 170px;
}
.library-description {
  font-style: italic;
  border-bottom: 1pt solid black;
}


/* Story pages. Unused for now.
.return-container {
  
}
.return-content {
  
}
*/

.story-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.story-image-content {
  max-width: 100%;
  height: auto;
}

.description-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: none;
  position: relative;
  font-size: 1rem;
}
.description-title {
  font-family: Garamond;
}
.description-content {
  font-family: Arial;
  font-size: 1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: center;
  max-width: 90%;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
}

.story-container {
  margin-bottom: 30px;
  border-top: none;
  position: relative;
  font-size: 1rem;
}
.story-content {
  /* the reader will be able to change font, text size, font & background color combinations, and other formatting */
  font-family: 'Times New Roman', Times, serif
    ;
  font-size: 1.1rem;
  line-height: 1.8em;
  background-color: white;
  color: black;
  text-align: left;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
}
.story-hr-blue {
  border: 0;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(9, 84, 132), rgba(0, 0, 0, 0));
}




