@charset "utf-8";
.bg {
  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-align: center;
  justify-content: center;
  transition: 0.3s;
}
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}
.bgImgLanding {
  background-image: url(../images/imgBg.jpg);
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  z-index: -1;
  filter: blur(10px);
}
.bgImg {
  background-image: url(../images/imgBg.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  z-index: -101;
  height: 100vh;
}
.bgImg2 {
  background-image: url(../images/bg-gallery.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  z-index: -101;
  height: 100vh;
}
.landingBtn {
  border: 2px solid rgba(0, 0, 0, 1);
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 35px;
  font-family: "Open Sans";
  font-weight: bolder;
  font-size: x-large;
  letter-spacing: 10px;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s linear;
}
.landingBtn:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
}

.blurReveal {
  transform: translateY(20px);
  opacity: 0;
  filter: blur(10px);
  transition: 3s all ease;
}
.blurReveal.active {
  transform: translateY(0px);
  opacity: 1;
  filter: blur(0px);
}
.buttonReveal {
  transform: translateY(20px);
  opacity: 0;
  filter: blur(10px);
  transition: 2s all ease 2s;
}
.buttonReveal.active {
  transform: translateY(0px);
  filter: blur(0px);
  opacity: 1;
}
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in-out;
}
.active.fade-left {
  animation: fade-left 1s ease-in-out;
}
.active.fade-right {
  animation: fade-right 1s ease-in-out;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(20px);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0px);
    opacity: 1;
  }
}
.elems {
  z-index: 3;
  padding-top: 0px;
}

body {
  font-family: "Open Sans";
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.homeDiv {
  width: 800px;
  height: 50vh;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
  display: inline-block;
}
.title {
  width: 96vw;
  display: inline-block;
  /* background-image: url(../images/book-group.png); */
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
  max-width: 650px;
  text-align: center;
  padding-left: 2vw;
  padding-right: 2vw;
  background-position: center 0%;
  margin-top: 0px;
  margin-bottom: 0px;
}
.landingAuth {
  font-family: "Open Sans";
  font-size: large;
  font-weight: 400;
  letter-spacing: 10px;
  text-indent: 0px;
  margin-bottom: 45px;
  line-height: 28px;
}
ul li:hover a {
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
  transition: all 0.1s linear;
}
.content {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  width: 80%;
  border-radius: 25px;
  padding-bottom: 50px;
  backdrop-filter: blur(10px);
  margin-top: 100px;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: -50px;
  overflow: hidden;
}
.authQuote {
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 1);
  display: inline-block;
  float: left;
}
.authQuote p {
  font-family: "Brush Script MT";
  font-style: normal;
  font-weight: 400;
  font-size: xx-large;
}

.otherBooks {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 50px 50px;
  justify-content: center;
}

.book img {
  width: 250px;
}
.cover {
  display: inline-block;
  text-align: right;
  width: 250px;
}

.otherCovers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.otherCovers > img {
  width: 100%;
  max-width: 300px;
}

.otherDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  margin-left: 20px;
}

.otherDesc h2,
h1,
p {
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
}

.otherDesc > p {
  text-align: justify;
}

.flex {
  display: flex;
  justify-content: center;
}

.book {
  width: 100%;
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  justify-content: center;
}
.aboutbook h1 {
  margin-bottom: 50px;
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
}
.odd {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  height: 135px;
  text-align: center;
  justify-content: center;
}
.previewThumb {
  width: 45%;
  text-align: right;
  float: left;
  display: inline-block;
  height: 135px;
}
.previewThumb img {
  width: 305px;
}
.logo {
  text-align: undefined;
  width: 18px;
  position: absolute;
}
.authQuote img {
  display: inline-block;
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.authContent {
  color: rgba(255, 255, 255, 1);
  float: left;
  display: inline-block;
  width: 40%;
  padding-left: 5%;
  padding-right: 5%;
  text-align: right;
  padding-top: 0px;
}
.authContent p {
  text-align: justify;
  text-align-last: right;
}
.authImgDiv {
  display: inline-block;
  width: 40%;
  padding-left: 5%;
  padding-right: 5%;
}
.temp {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pageHead {
  display: inline-block;
  margin-top: 100px;
  text-align: center;
  width: 90%;
}
.pageHead img {
  width: 50%;
}
.headTitle img {
  width: 100%;
  max-width: 600px;
}
.headTitle {
  width: 90%;
  display: inline-block;
  margin-top: 150px;
}
.sidenav a {
  margin-left: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: large;
  white-space: nowrap;
}
.inputform {
  width: auto;
  padding: 5px 10px 5px 10px;
  margin-top: -10px;
  font-family: "Open Sans";
}
.gridItem img {
  /* no size contribution */
  width: 100%;
  height: auto;

  /* fill the item space*/
  /*
    min-height: 100%;
    min-width: 100%;
*/
  /* */
  /*    display: block;*/
  /*    object-fit: contain;*/
}

.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 5; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 50px; /* Place content 60px from the top */
  transition: 0.5s;
  backdrop-filter: blur(10px);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 35px;
  margin-top: -15px;
}

.burger {
  padding-left: 5px;
  position: fixed;
  visibility: hidden;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

html {
  scroll-behavior: smooth;
}

.contactForm {
  color: #ffffff;
  font-size: large;
  padding-bottom: 30px;
  text-align: left;
  display: inline-block;
  width: 80%;
}
.purchaseDiv {
  color: #ffffff;
  font-size: large;
  padding-bottom: 30px;
  text-align: left;
  display: inline-block;
  width: 80%;
}

.contact-header {
  color: white;
  margin-top: 50px;
}

.thanks {
  display: inline-block;
  margin-top: 35vh;
}

.contactBtn {
  display: inline;
  font-family: "Open Sans";
  font-weight: bolder;
  border: 2px solid rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s linear;
  color: rgba(255, 255, 255, 1);
  font-size: small;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 5px;
  letter-spacing: 5px;
  cursor: pointer;
}
.contactBtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

form {
  display: flex;
  flex-direction: column;
}

.gridItem {
  display: block;
  height: auto;
  width: auto;
  background-color: azure;
  padding: 0px;
  overflow: hidden;
}

.gridParent {
  grid-auto-flow: dense;
  display: grid;
  margin: 0px 3% 0px 3%;
  column-gap: 10px;
  row-gap: 10px;
  width: auto;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: repeat(auto-fit, auto);
}

.gridCenter {
  grid-row-start: 2;
  grid-column-start: 2;
}

.purchaseGrid {
  width: auto;
  /* margin: 0px 5% 0px 5%; */
  display: grid;
  column-gap: 0px;
  row-gap: 20px;
  grid-template-columns: 50% 50%;
}

.purchaseGridItem {
  text-align: center;
  display: inline-grid;
  aspect-ratio: 2/1;
  padding: 0px;
  width: 100%;
}
.purchaseGridItem div {
  color: white;
}
.purchaseGridItem a img {
  border-radius: 15px;
  width: 90%;
  height: auto;
  transition: 0.1s ease;
}
.purchaseGridItem a img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.purchaseGridItem > div > p {
  text-align: center;
  width: 100%;
  margin: 5px 0px;
}
.quote {
  width: auto;
  aspect-ratio: 16/9;
  margin: 45px 20px 0px 20px;
  background-image: url("../images/gallery/gallery-sunset.jpg");
  background-position: center;
  background-size: cover;
}
@media (max-width: 1025px) {
  .quote {
    width: auto;
    aspect-ratio: 1/1;
    margin: 40px 20px 0px 20px;
    background-position: center;
    background-size: cover;
  }
  .reviews-books {
    flex-direction: column !important;
  }
  .reviews-cover {
    display: flex;
    width: 100% !important;
    justify-content: center;
  }

  .reviews-cover img {
    width: 100%;
    max-width: 310px;
  }

  .reviews-aboutbook p {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: small;
    text-align: justify;
  }
  .reviews-aboutbook {
    width: 100% !important;
  }
  .reviews-btn {
    font-size: large !important;
    letter-spacing: 2px !important;
  }
  .reviews-aboutbook a {
    display: flex;
    justify-content: center;
  }
  .reviews-aboutbook h1 {
    margin: 30px 0px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: x-large !important;
    text-align: center;
  }
}

@media (min-width: 1025px) and (max-width: 1365px) {
  .cover img {
    width: 220px;
  }
  .book .aboutbook h1 {
    margin-bottom: 50px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: xx-large;
  }
  .book .aboutbook {
    display: inline-block;
    text-align: left;
    width: 45%;
    padding-top: 0px;
    margin-top: 0px;
    float: left;
    margin-right: 5%;
    padding-left: 0px;
  }
  .cover {
    display: inline-block;
    text-align: right;
    width: 45%;
    float: left;
    margin-top: 30px;
    margin-right: 25px;
  }
  .homeLinks .even {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    height: 95px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .homeLinks .odd {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    height: 100px;
  }
  .previewThumb img {
    width: 220px;
  }
  .homeLinks div .previewContent .contentBtn {
    padding-top: 5px;
    font-size: small;
    padding-bottom: 5px;
    margin-top: 0px;
  }
  .homeLinks div .previewContent {
    height: 95px;
  }
  .authImgDiv .authQuote p {
    font-size: x-large;
  }
}

@media (min-width: 701px) and (max-width: 1024px) {
  .previewThumb img {
    width: 220px;
  }
  .previewThumb {
    width: 45%;
    text-align: right;
    float: left;
    display: inline-block;
    height: 135px;
  }
  .previewContent h1 {
    margin-bottom: 0px;
    padding-bottom: 0px;
    height: auto;
    margin-top: 0px;
  }
  .homeLinks div .previewContent .contentBtn {
    padding-top: 5px;
    font-size: small;
    padding-bottom: 5px;
    margin-top: 0px;
  }
  .homeLinks div .previewContent {
    height: 95px;
  }
  .homeLinks .even {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    height: 95px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .homeLinks .odd {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    height: 100px;
  }
  .cover img {
    width: 220px;
  }
  .cover {
    display: inline-block;
    text-align: right;
    width: 45%;
    float: left;
    margin-top: 30px;
    margin-right: 25px;
  }
  .book .aboutbook {
    display: inline-block;
    text-align: left;
    width: 45%;
    padding-top: 0px;
    margin-top: 0px;
    float: left;
    margin-right: 5%;
    padding-left: 0px;
  }
  .book .aboutbook h1 {
    margin-bottom: 50px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: xx-large;
  }
  .aboutbook p {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: small;
    text-align: justify;
  }
  .book {
    width: 100%;
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    float: left;
    margin-top: 0px;
    padding-top: 20px;
  }
  .authImgDiv .authQuote p {
    font-size: large;
  }
  .authContent p {
    font-size: small;
  }
  .authContent {
    margin-top: -30px;
  }
  .contactForm p {
    text-align: justify;
    font-size: medium;
  }
  .otherDesc > p {
    font-size: small;
  }
}

@media (max-width: 1024px) {
  .otherBooks {
    align-items: center;
    flex-direction: column;
  }
  .otherCovers,
  .otherDetails {
    width: 90%;
    margin: 0px;
  }
  .otherDesc > p {
    font-size: small;
  }
  .otherBooks {
    margin: 50px 20px 0px 20px;
  }
  .otherDesc > .purchaseGrid div {
    max-width: 300px;
  }
  .purchaseGrid {
    justify-content: center;
  }
}

@media (min-width: 438px) and (max-width: 700px) {
  .cover {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .purchaseGrid {
    grid-template-columns: auto;
  }
  .book {
    display: inline-block;
  }

  .cover img {
    width: 60%;
  }
  .book .aboutbook {
    display: inline-block;
    width: 80%;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .aboutbook p {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: small;
    text-align: justify;
  }
  .authContent {
    width: 80%;
    display: inline-block;
    float: none;
    text-align: center;
    margin-top: -20px;
  }
  .authContent h1 {
    font-size: x-large;
  }
  .authContent p {
    font-size: small;
    text-align-last: left;
  }

  .book .aboutbook h1 {
    margin-bottom: 20px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: x-large;
    text-align: center;
  }
  .content {
    width: 90%;
  }
  div .previewThumb img {
    width: 250px;
  }
  div .previewContent h1 {
    font-size: small;
    text-align: center;
  }
  .homeLinks div .previewContent {
    float: none;
    width: 100%;
    display: inline-block;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .homeLinks div {
    display: inline-block;
    width: 100%;
    text-align: center;
    height: auto;
  }

  .homeLinks div .previewThumb {
    width: 100%;
    display: inline;
    float: none;
    text-align: center;
  }
  .homeLinks div .previewContent .contentBtn {
    padding-top: 5px;
    font-size: small;
    padding-bottom: 5px;
    margin-top: 0px;
  }
  .authQuote img {
    width: 300px;
  }
  .authQuote {
    float: none;
  }
  .authImgDiv {
    width: 300px;
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 20px;
  }
  .homeLinks .even {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body .burger {
    padding-left: 12px;
    position: fixed;
    visibility: visible;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    padding-top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 50px 50px;
    border-top-right-radius: 50px 0;
    width: 50px;
    height: 50px;
    padding-bottom: 5px;
    backdrop-filter: blur(10px);
  }
  body .sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 5; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0; /* Black*/
    overflow-x: hidden; /* Place content 60px from the top */
    transition: 0.5s;
  }
  .bg .fixedNav {
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    visibility: hidden;
  }
  .gridParent {
    grid-template-columns: auto auto;
  }
  .gridCenter {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media (max-width: 437px) {
  .cover {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .purchaseGrid {
    grid-template-columns: auto;
  }
  .book {
    display: inline-block;
  }

  .cover img {
    width: 60%;
  }
  .book .aboutbook {
    display: inline-block;
    width: 80%;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .aboutbook p {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: small;
    text-align: justify;
  }
  .authContent {
    width: 80%;
    display: inline-block;
    float: none;
    text-align: center;
    margin-top: -20px;
  }
  .authContent h1 {
    font-size: x-large;
  }
  .authContent p {
    font-size: small;
    text-align-last: left;
  }

  .book .aboutbook h1 {
    margin-bottom: 20px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: x-large;
    text-align: center;
  }
  .content {
    width: 90%;
  }
  div .previewThumb img {
    width: 250px;
  }
  div .previewContent h1 {
    font-size: small;
    text-align: center;
  }
  .homeLinks div .previewContent {
    float: none;
    width: 100%;
    display: inline-block;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .homeLinks div {
    display: inline-block;
    width: 100%;
    text-align: center;
    height: auto;
  }

  .homeLinks div .previewThumb {
    width: 100%;
    display: inline;
    float: none;
    text-align: center;
  }
  .homeLinks div .previewContent .contentBtn {
    padding-top: 5px;
    font-size: small;
    padding-bottom: 5px;
    margin-top: 0px;
  }
  .authQuote img {
    width: 230px;
  }
  .authQuote {
    float: none;
    width: 230px;
  }
  .authQuote p {
    font-size: large;
  }

  .authImgDiv {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 20px;
  }
  .homeLinks .even {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body .burger {
    padding-left: 12px;
    position: fixed;
    visibility: visible;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    padding-top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 50px 50px;
    border-top-right-radius: 50px 0;
    width: 50px;
    height: 50px;
    padding-bottom: 5px;
    backdrop-filter: blur(10px);
  }
  body .sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 5; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0; /* Black*/
    overflow-x: hidden; /* Place content 60px from the top */
    transition: 0.5s;
  }
  .bg .fixedNav {
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    visibility: hidden;
  }
  .contactForm p {
    font-size: small;
    text-align: justify;
  }
  .gridParent {
    grid-template-columns: auto auto;
  }
  .gridCenter {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.even {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0);
  display: inline-block;
  height: 90px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: center no-repeat #fff;
}
.aboutbook {
  display: inline-block;
  text-align: left;
  width: 250px;
  padding-left: 25px;
  padding-top: 0px;
  margin-top: 0px;
}
.previewContent {
  width: 45%;
  display: flex;
  float: left;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  height: 135px;
  padding-left: 25px;
}
.contentBtn {
  display: inline;
  font-family: "Open Sans";
  font-weight: bolder;
  border: 2px solid rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s linear;
  color: rgba(255, 255, 255, 1);
  font-size: large;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 5px;
  cursor: pointer;
}
.contentBtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 5px;
  background-color: #252525;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
  border-top-width: 2px;
  font-size: small;
  display: inline-block;
  width: 100%;
  margin-top: 100px;
}
.copyright strong {
  padding-left: 25px;
  color: #c1a24f;
}

.previewContent h1 {
  color: rgba(255, 255, 255, 1);
  font-family: "Open Sans";
  margin-top: 0px;
  font-size: large;
  justify-content: space-between;
  display: inline-block;
  width: 100%;
}

.aboutbook p {
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
  text-align: justify;
}

.fixedNav {
  width: 80%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
  z-index: 5;
  backdrop-filter: blur(20px);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: inline-block;
  margin-left: 5%;
}
.authDiv {
  background-position: left 0%;
  padding-top: 50px;
}

.navigator {
  justify-content: space-evenly;
}

li {
  font-size: 14px;
  font-weight: normal;
  font-family: "Open Sans";
  transition: all 0.1s linear;
  letter-spacing: 0px;
  color: #ffffff;
}

ul {
  list-style-type: none;
  opacity: 1;
  text-shadow: 0px 0px;
  display: flex;
  margin-left: 0%;
  margin-right: 0%;
  padding-left: 0px;
  padding-bottom: 5px;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-family: calibri;
  font-weight: lighter;
  cursor: pointer;
}
.reviews-books {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 0px;
  padding-top: 20px;
}

.reviews-cover {
  display: flex;
  width: 50%;
  justify-content: center;
}

.reviews-cover img {
  width: 100%;
  max-width: 310px;
}

.reviews-aboutbook p {
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
  font-size: small;
  text-align: justify;
}
.reviews-aboutbook {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 50%;
  padding-top: 0px;
  margin-top: 0px;
  justify-content: center;
}
.reviews-btn {
  display: inline;
  font-family: "Open Sans";
  font-weight: bolder;
  border: 2px solid rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.1s linear;
  color: rgba(255, 255, 255, 1);
  font-size: large;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 5px;
  cursor: pointer;
}
.reviews-aboutbook a {
  display: flex;
  justify-content: center;
}
.reviews-aboutbook h1 {
  margin: 30px 0px;
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 1);
  font-size: xx-large;
  text-align: center;
}

@media (min-width: 1366px) {
  .cover {
    display: inline-block;
    text-align: right;
    width: 50%;
    float: left;
  }
  .cover img {
    width: 80%;
    max-width: 310px;
  }

  .book {
    width: 55%;
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    float: left;
    margin-top: 0px;
    padding-top: 20px;
  }

  .homeLinks {
    width: 45%;
    float: left;
  }

  .odd {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    height: 90px;
  }
  .even {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    height: 90px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .previewContent h1 {
    font-size: medium;
  }

  .content {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 80%;
    padding-bottom: 50px;
    backdrop-filter: blur(10px);
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 50px;
  }
  .aboutbook h1 {
    margin-bottom: 50px;
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: xx-large;
  }
  .aboutbook p {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, 1);
    font-size: small;
    text-align: justify;
  }
  .aboutbook {
    display: inline-block;
    text-align: left;
    width: 45%;
    padding-left: 25px;
    padding-top: 0px;
    margin-top: 0px;
    float: left;
    margin-right: 5%;
  }
  .previewThumb img {
    width: 200px;
  }
  .previewThumb {
    text-align: right;
    float: left;
    display: inline-block;
    margin-left: 5%;
    margin-right: 5%;
    width: 200px;
    height: auto;
  }
  .contentBtn {
    font-size: small;
    padding-left: 10px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .previewContent {
    width: 40%;
    display: flex;
    float: left;
    text-align: left;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .authContent {
    color: rgba(255, 255, 255, 1);
    float: left;
    display: inline-block;
    width: 30%;
    padding-left: 18%;
    padding-right: 2%;
    text-align: right;
    padding-top: 0px;
  }
  .pageHead img {
    width: 30%;
  }
  .pageHead {
    display: inline-block;
    margin-top: 130px;
    text-align: center;
    width: 90%;
  }
  .content .contactForm {
    color: #ffffff;
    font-size: large;
    padding-bottom: 30px;
    text-align: left;
    display: inline-block;
    width: 800px;
  }
  .content .contact-header {
    color: white;
    margin-top: 0px;
  }
  .content .contactBtn {
    display: inline;
    font-family: "Open Sans";
    border: 2px solid rgba(255, 255, 255, 1);
    font-weight: bolder;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.1s linear;
    color: rgba(255, 255, 255, 1);
    font-size: large;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 5px;
    cursor: pointer;
  }
  .content .purchaseDiv {
    color: #ffffff;
    font-size: large;
    padding-bottom: 30px;
    text-align: left;
    display: inline-block;
    width: 800px;
  }
}

.article {
  font-family: "Times New Roman";
  text-align: justify;
}

.italic {
  font-style: italic;
}

.italic-text {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

.regular {
  font-weight: normal;
}

.center-text {
  text-align: center;
}
