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

.checked {
  color: orange;
}

/* good reads bits */
.goodreadContain {
    display: block;
    position: absolute;
    left: 20px;
    bottom: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
}

.gr_container {
  
  width: 250px;
}
.gr_book_container {
  border-bottom: 1px solid #d7d7d7; padding: 5px 0px;
}
.gr_book_image {
  float: left; padding-right: 20px;
}
.gr_book_title {}
.gr_review_stats {
  font-size: 14px;
  }

/** end **/

      .greyscaleMe {
        backdrop-filter: grayscale(100%) blur(5px);
        height: 30px;
        width: 87.5%;
        left: 12.5%;
        position: relative;

        border-left: 1px solid white;
      }

      body {
        margin: 0;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      .name {
        font-family: "IM Fell English", serif;
      }

      a {
        font-family: "IM Fell English", serif;
        font-style: italic;
        color: black;
        text-decoration: underline dotted;
      }

      a:hover {
        opacity: 0.5;
      }

      .bioContain {
        max-width: 800px;
      }

      p,
      span {
        font-family: "Crimson Text", "Georgia", serif;
        font-size: 25px;
      }
      .parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        /* transition: all 1s; */
      }

      #lhs {
        align-content: center;
        margin: 0 auto;
        padding: 30px;
        height: calc(100vh - 60px);
      }

      #rhs {
        background-image: url("img/author.webp");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        height: 100vh;
        /* opacity: 0; */
      }

      /** MEDIA QUERIES **/
      @media (max-width: 850px) and (orientation: portrait) {
        .parent {
          grid-template-columns: repeat(1, 1fr);
        }

        #lhs {
          height: calc(52vh - 60px);
          order: 1;
        }

        #rhs {
          background-position: top left;
          height: 48vh;
        }
      }
   
