/* line 1, assets/stylesheets/site.css.scss */
:root {
  /* The intrinsic width of the underline stroke (in pixels). This is 
   * the same as the height of the cap images. Don't specify the
   * units! This is because of some of the calculations we do later on. */
  --underline-intrinsic-width: 8;
  /* The actual width of the underline stroke we want to render (in pixels).
   * You can modify this, and the sizing and positioning should be calculated
   * accordingly. Again, Don't specify the units! */
  --underline-width: 12;
  /* The color used to draw the underline. It should match the color
   * used in the cap images... unfortunately we can't modify the SVG
   * fill via CSS because it's a background image. */
  /* #f1a1e3 #e9d7fc */
  --underline-color: #f1a1e3;
  /* We need to know the width of the cap images so that we
   * can position everything on the x axis accordingly. */
  --underline-cap-width: 4px;
  /* The border is positioned relative to the bottom of the line.
   * We can move it upwards a little to create an overlap effect. */
  --underline-offset-y: -2px;
  /* The padding to add to the x axis. By default, the caps would be
   * aligned with the beginning and end of the line. */
  --underline-padding-x: 0.12em;
}

/* line 31, assets/stylesheets/site.css.scss */
#article-title, .underline {
  display: inline;
  --underline-width-scale: calc(var(--underline-width) / var(--underline-intrinsic-width));
  padding: 0 calc(var(--underline-padding-x) + calc(var(--underline-cap-width) * var(--underline-width-scale)));
  box-decoration-break: clone;
  background-repeat: no-repeat;
  color: #32557f;
  color: black;
  background-image: linear-gradient(180deg, var(--underline-color), var(--underline-color)), var(--cap-image-left), var(--cap-image-right);
  background-position-x: calc(var(--underline-cap-width) * var(--underline-width-scale)), 0, 100%;
  background-position-y: calc(100% - var(--underline-offset-y) * -1);
  background-size: calc(100% - calc(var(--underline-cap-width) * var(--underline-width-scale) * 2)) calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px);
  --underline-width: 10;
  --underline-offset-y: 0px;
  /* The cap images to use that form the left and right shape.*/
  --cap-image-left: url(https://files-6lc03kjqt.now.sh/left-2.svg);
  --cap-image-right: url(https://files-e7gkh52mq.now.sh/right-2.svg);
}

/* line 63, assets/stylesheets/site.css.scss */
body {
  margin: 0;
  padding: 0;
  background: white;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  color: black;
  width: 100%;
}

/* line 73, assets/stylesheets/site.css.scss */
h1, h2, h3 {
  font-family: 'Lobster', BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/* line 77, assets/stylesheets/site.css.scss */
h3 {
  margin-top: 15px;
}

/* line 81, assets/stylesheets/site.css.scss */
nav {
  margin: 10px 0;
  margin-bottom: 60px;
  margin-top: 3px;
  background: #020024;
  background: linear-gradient(#2b2b2b, #212121);
  background: linear-gradient(#ededed, #ededed);
  padding: 0px 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-radius: 20px;
  display: flex;
}

/* line 96, assets/stylesheets/site.css.scss */
nav a {
  display: block;
  color: black;
  margin: 5px 0;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 15px;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}

/* line 111, assets/stylesheets/site.css.scss */
nav a.selected {
  background: white;
}

/* line 115, assets/stylesheets/site.css.scss */
nav a:hover {
  color: white;
  background: linear-gradient(#2b2b2b, #212121);
  background: #212121;
}

/* line 121, assets/stylesheets/site.css.scss */
nav a.tiger {
  background: none;
  margin: 0;
  padding: 0 10px;
}

/* line 126, assets/stylesheets/site.css.scss */
nav a.tiger img {
  padding-top: 5px;
  width: 30px;
}

@media only screen and (max-width: 1300px) {
  /* line 133, assets/stylesheets/site.css.scss */
  nav {
    margin: 3px;
    margin-bottom: 30px;
    width: calc(100% - 16px);
  }
}

@media only screen and (max-width: 600px) {
  /* line 140, assets/stylesheets/site.css.scss */
  nav a {
    font-size: 70%;
  }
}

/* line 146, assets/stylesheets/site.css.scss */
header {
  margin: auto;
  max-width: 1050px;
  padding-bottom: 40px;
  line-height: 1.5em;
}

/* line 153, assets/stylesheets/site.css.scss */
h1#book-title {
  width: 418px;
  margin: auto;
  margin-bottom: 20px;
}

/* line 158, assets/stylesheets/site.css.scss */
h1#book-title span {
  display: none;
}

/* line 159, assets/stylesheets/site.css.scss */
h1#book-title img {
  width: 400px;
}

/* line 162, assets/stylesheets/site.css.scss */
#book3d {
  width: 392px;
}

/* line 166, assets/stylesheets/site.css.scss */
section {
  padding: 25px 0;
  padding-bottom: 60px;
  border-top: 1px solid #f0f0f0;
}

/* line 173, assets/stylesheets/site.css.scss */
article {
  max-width: 1050px;
  margin: auto;
}

/* line 177, assets/stylesheets/site.css.scss */
article a {
  color: black;
  padding: 2px;
}

/* line 181, assets/stylesheets/site.css.scss */
article a:hover {
  background: #f1a1e3;
  color: white;
  text-decoration: none;
}

/* line 187, assets/stylesheets/site.css.scss */
article p, article ul {
  font-size: 1.2em;
  line-height: 135%;
}

/* line 191, assets/stylesheets/site.css.scss */
article ul {
  line-height: 100%;
}

/* line 195, assets/stylesheets/site.css.scss */
article .side {
  float: right;
  background: #f5f5f5;
  padding: 20px;
  width: 350px;
  border-radius: 10px;
}

/* line 203, assets/stylesheets/site.css.scss */
article h1, article h2, article h3, article p, article pre {
  max-width: 1030px;
  padding: 15px 10px;
  margin: 0px 0px;
}

/* line 208, assets/stylesheets/site.css.scss */
article h2, article h3, article p {
  max-width: 800px;
}

/* line 212, assets/stylesheets/site.css.scss */
article h2 {
  font-size: 180%;
  padding: 25px 10px;
}

/* line 216, assets/stylesheets/site.css.scss */
article h3 {
  font-size: 150%;
  padding: 25px 10px;
}

/* line 221, assets/stylesheets/site.css.scss */
article code {
  background: #f7e81f;
  background: #fcffb3;
}

/* line 225, assets/stylesheets/site.css.scss */
article pre {
  background: #f5f5f5;
  background: #f7e81f;
  background: #525252;
  color: white;
  border-radius: 10px;
  padding: 10px;
  width: calc(100% - 20px);
  font-size: 1.1em;
  overflow: scroll;
}

/* line 236, assets/stylesheets/site.css.scss */
article pre code {
  background: none;
}

/* line 243, assets/stylesheets/site.css.scss */
section h3 {
  font-size: 180%;
}

/* line 247, assets/stylesheets/site.css.scss */
section.black-section {
  background: #262626;
  color: white;
}

/* line 252, assets/stylesheets/site.css.scss */
section.grey-section {
  background: #f7f7f7;
}

/* line 256, assets/stylesheets/site.css.scss */
footer {
  text-align: center;
  margin: auto;
  max-width: 1050px;
  margin-bottom: 3px;
  margin-top: 60px;
  width: calc(100% - 6px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-radius: 20px;
  max-width: 1030px div;
  max-width-margin: 20px 25px;
  max-width-font-size: 90%;
  max-width-color: #999999;
}

/* line 274, assets/stylesheets/site.css.scss */
footer .imprint {
  line-height: 150%;
  padding: 20px;
  color: #999999;
}

/* line 279, assets/stylesheets/site.css.scss */
footer .imprint a {
  color: #999999;
  text-decoration: none;
  padding: 5px;
  border-radius: 15px;
}

/* line 285, assets/stylesheets/site.css.scss */
footer .imprint span {
  padding: 5px;
}

/* line 290, assets/stylesheets/site.css.scss */
footer a.logo {
  opacity: 80%;
  display: block;
  background: #f7f7f7;
  border-radius: 50%;
  width: 200px;
  height: 160px;
  padding-top: 40px;
  margin: auto;
}

/* line 300, assets/stylesheets/site.css.scss */
footer a.logo img {
  width: 80%;
  filter: invert(0);
}

/* line 305, assets/stylesheets/site.css.scss */
footer a.logo:hover {
  background: black;
}

/* line 307, assets/stylesheets/site.css.scss */
footer a.logo:hover img {
  filter: invert(1);
}

@media only screen and (max-width: 600px) {
  /* line 314, assets/stylesheets/site.css.scss */
  .imprint a, .imprint span {
    font-size: 90%;
  }
  /* line 318, assets/stylesheets/site.css.scss */
  article p {
    padding: 10px;
    margin: 0;
    width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 600px) {
  /* line 325, assets/stylesheets/site.css.scss */
  .hide-mobile {
    display: none;
  }
}

/* Buttons */
/* line 336, assets/stylesheets/site.css.scss */
a.light-button {
  border: 3px solid white;
  color: white;
  width: 40px;
  padding: 10px;
  text-decoration: none;
  font-size: 110%;
  border-radius: 15px;
}

/* line 343, assets/stylesheets/site.css.scss */
a.light-button:hover {
  background: #242424;
  border: 3px solid #666666;
}

/* line 348, assets/stylesheets/site.css.scss */
a.dark-button {
  border: 3px solid black;
  color: black;
  width: 40px;
  padding: 10px;
  text-decoration: none;
  font-size: 100%;
  border-radius: 15px;
}

/* line 355, assets/stylesheets/site.css.scss */
a.dark-button:hover {
  border: 3px solid lightgrey;
  background: #f7f7f7;
  color: #262626;
}

/* line 361, assets/stylesheets/site.css.scss */
a.button {
  border: 2px solid black;
  color: black;
  text-decoration: none;
  padding: 12px 12px;
  padding-top: 10px;
  border-radius: 15px;
}

/* line 370, assets/stylesheets/site.css.scss */
.button:hover {
  color: white;
  background: black;
}

/* line 375, assets/stylesheets/site.css.scss */
ul li {
  padding-bottom: 16px;
}

/* Code section */
/* line 380, assets/stylesheets/site.css.scss */
h1#code-title {
  text-align: center;
  line-height: 120%;
  max-width: 600px;
  margin: auto;
}

/* line 387, assets/stylesheets/site.css.scss */
header#code-header {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

/* line 392, assets/stylesheets/site.css.scss */
header#code-header h3 {
  text-align: left;
}

/* line 397, assets/stylesheets/site.css.scss */
header#article-header {
  margin-bottom: 0;
  padding-bottom: 60px;
  border: 0;
}

/* line 403, assets/stylesheets/site.css.scss */
#code-intro {
  border: 0;
  margin: auto;
  padding-bottom: 0;
  max-width: 1050px;
  display: flex;
}

/* line 410, assets/stylesheets/site.css.scss */
#code-intro h2, #code-intro p {
  max-width: 500px;
  padding: 5px;
}

/* line 415, assets/stylesheets/site.css.scss */
#code-intro div img, #code-intro div div {
  vertical-align: middle;
}

/* line 419, assets/stylesheets/site.css.scss */
#code-intro #promo {
  padding-top: 30px;
  padding-right: 5%;
}

/* line 424, assets/stylesheets/site.css.scss */
#code-intro #promo .bigger {
  font-size: 110%;
  padding-bottom: 0;
}

/* line 429, assets/stylesheets/site.css.scss */
#code-intro #promo .smaller {
  font-size: 90%;
}

/* line 434, assets/stylesheets/site.css.scss */
#frameworks {
  display: flex;
}

/* line 437, assets/stylesheets/site.css.scss */
#rails {
  width: 110px;
  display: block;
  float: left;
}

/* line 443, assets/stylesheets/site.css.scss */
#django {
  width: 100px;
  display: block;
  padding-top: 10px;
  padding-left: 15px;
  float: left;
}

@media only screen and (max-width: 900px) {
  /* line 453, assets/stylesheets/site.css.scss */
  #code-header h3 {
    text-align: center;
  }
  /* line 457, assets/stylesheets/site.css.scss */
  #code-intro {
    display: block;
  }
  /* line 460, assets/stylesheets/site.css.scss */
  #code-intro div {
    margin: auto;
    text-align: center;
  }
  /* line 465, assets/stylesheets/site.css.scss */
  #code-intro #promo {
    padding-top: 0;
    padding-bottom: 35px;
  }
  /* line 470, assets/stylesheets/site.css.scss */
  #code-intro h2, #code-intro p {
    margin: auto;
  }
  /* line 474, assets/stylesheets/site.css.scss */
  #code-intro #promo .bigger {
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 800px) {
  /* line 481, assets/stylesheets/site.css.scss */
  #frameworks {
    width: 350px;
    margin: auto;
  }
}

@media only screen and (max-width: 450px) {
  /* line 488, assets/stylesheets/site.css.scss */
  #rails {
    width: 50px;
    padding-top: 15px;
  }
  /* line 492, assets/stylesheets/site.css.scss */
  #django {
    width: 45px;
    padding-top: 20px;
  }
  /* line 496, assets/stylesheets/site.css.scss */
  #frameworks {
    width: 200px;
    margin: auto;
  }
}

/* line 502, assets/stylesheets/site.css.scss */
#code-learn {
  display: flex;
  width: 1050px;
  margin: auto;
}

/* line 508, assets/stylesheets/site.css.scss */
#code-learn table {
  width: auto;
  margin: auto;
  border: 1px solid lightgrey;
  border-radius: 15px;
  margin-left: 5%;
}

/* line 515, assets/stylesheets/site.css.scss */
#code-learn table td {
  padding: 10px;
}

/* line 520, assets/stylesheets/site.css.scss */
#code-rating {
  width: 1050px;
  display: flex;
  margin: auto;
  margin-top: 40px;
}

/* line 527, assets/stylesheets/site.css.scss */
#code-header {
  max-width: 1050px;
  margin: auto;
}

/* line 531, assets/stylesheets/site.css.scss */
#code-body {
  max-width: 1050px;
  margin: auto;
  padding: 10px;
  display: flex;
}

/* line 537, assets/stylesheets/site.css.scss */
#code-body a, #code-body a:hover {
  color: black;
}

@media only screen and (max-width: 900px) {
  /* line 543, assets/stylesheets/site.css.scss */
  #code-body {
    display: block;
  }
  /* line 546, assets/stylesheets/site.css.scss */
  #code-learn {
    display: block;
    width: calc(100% - 50px);
    padding: 0 25px;
  }
  /* line 551, assets/stylesheets/site.css.scss */
  #code-rating {
    width: calc(100% - 50px);
    padding: 0 25px;
  }
}

@media only screen and (max-width: 500px) {
  /* line 558, assets/stylesheets/site.css.scss */
  #code-rating {
    display: block;
  }
  /* line 561, assets/stylesheets/site.css.scss */
  #code-rating div {
    padding-bottom: 15px;
  }
}

/* Book landing */
/* line 568, assets/stylesheets/site.css.scss */
#book-header {
  margin: auto;
  max-width: 1050px;
  display: flex;
  border: 0;
  padding-bottom: 20px;
}

/* line 575, assets/stylesheets/site.css.scss */
#book-header h2 {
  font-weight: normal;
  font-size: 190%;
  line-height: 1.1em;
}

/* line 581, assets/stylesheets/site.css.scss */
#book-header h2, #book-header p {
  max-width: 500px;
  padding: 5px;
}

/* line 586, assets/stylesheets/site.css.scss */
#book-header div img, #book-header div div {
  vertical-align: middle;
}

/* line 591, assets/stylesheets/site.css.scss */
#promo {
  padding: 0 5%;
}

/* line 593, assets/stylesheets/site.css.scss */
#promo h2 {
  max-width: 90%;
}

@media only screen and (max-width: 450px) {
  /* line 597, assets/stylesheets/site.css.scss */
  h1#book-title {
    width: 90%;
    margin: auto;
  }
  /* line 600, assets/stylesheets/site.css.scss */
  h1#book-title img {
    width: 100%;
  }
  /* line 605, assets/stylesheets/site.css.scss */
  #book3d {
    width: 80%;
    margin: auto;
  }
}

@media only screen and (max-width: 1800px) {
  /* line 612, assets/stylesheets/site.css.scss */
  #promo {
    padding-right: 0;
  }
}

@media only screen and (max-width: 800px) {
  /* line 618, assets/stylesheets/site.css.scss */
  #book-header {
    display: block;
    text-align: center;
    padding: 0;
  }
  /* line 623, assets/stylesheets/site.css.scss */
  #promo {
    padding: 0;
    width: 80%;
    margin: auto;
  }
  /* line 628, assets/stylesheets/site.css.scss */
  #promo h2, #promo p {
    width: 100%;
    max-width: 100%;
  }
}

/* line 634, assets/stylesheets/site.css.scss */
#stars {
  position: absolute;
  left: 130px;
  top: 150px;
  transform: rotate(-2deg);
  cursor: default;
}

/* line 641, assets/stylesheets/site.css.scss */
#stars i {
  color: #edd24c;
  font-size: 25px;
  -webkit-transition: color 0.5s ease-out;
  -moz-transition: color 0.5s ease-out;
  -o-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}

/* line 653, assets/stylesheets/site.css.scss */
#stars:hover i:hover {
  color: yellow;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) rotate(5deg);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scale(1.33) rotate(5deg);
  }
}

/* line 669, assets/stylesheets/site.css.scss */
#copies-sold {
  position: absolute;
  right: 50px;
  top: 150px;
  transform: rotate(5deg);
  width: 140px;
  height: 140px;
  background: gold;
  -moz-border-radius: 70px;
  -webkit-border-radius: 70px;
  border-radius: 70px;
  animation-play-state: paused;
}

/* line 676, assets/stylesheets/site.css.scss */
#copies-sold .number {
  display: block;
  padding-top: 50px;
  padding-left: 15px;
  font-size: 200%;
  font-weight: bold;
  cursor: default;
}

/* line 684, assets/stylesheets/site.css.scss */
#copies-sold .text {
  display: block;
  cursor: default;
}

/* line 698, assets/stylesheets/site.css.scss */
#copies-sold:hover {
  animation: pulse 2s infinite;
}

/* line 703, assets/stylesheets/site.css.scss */
#rating {
  position: absolute;
  left: 135px;
  top: 300px;
  transform: rotate(-2deg);
  max-width: 250px;
}

/* line 710, assets/stylesheets/site.css.scss */
#rating .author {
  color: #333333;
  font-size: 80%;
}

/* line 716, assets/stylesheets/site.css.scss */
.hover-underline-animation {
  text-decoration: none;
  background-image: linear-gradient(gold, gold);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 1s;
}

/* line 725, assets/stylesheets/site.css.scss */
.hover-underline-animation:hover, .hover-underline-animation:focus {
  background-size: 100% 4px;
}

@media only screen and (max-width: 1500px) {
  /* line 731, assets/stylesheets/site.css.scss */
  #stars {
    left: 45px;
  }
  /* line 734, assets/stylesheets/site.css.scss */
  #rating {
    top: 270px;
    left: 50px;
  }
}

@media only screen and (max-width: 1300px) {
  /* line 741, assets/stylesheets/site.css.scss */
  #featured-reviews {
    display: flex;
  }
  /* line 744, assets/stylesheets/site.css.scss */
  #stars, #rating {
    flex: 1;
    padding: 0 5%;
    padding-bottom: 10px;
    position: relative;
    display: block;
    top: 0;
    left: 0;
  }
  /* line 753, assets/stylesheets/site.css.scss */
  #copies-sold {
    top: 300px;
  }
  /* line 756, assets/stylesheets/site.css.scss */
  #rating {
    transform: rotate(2deg);
  }
}

@media only screen and (max-width: 800px) {
  /* line 761, assets/stylesheets/site.css.scss */
  #copies-sold {
    top: 600px;
  }
  /* line 764, assets/stylesheets/site.css.scss */
  #stars i {
    font-size: 20px;
  }
  /* line 767, assets/stylesheets/site.css.scss */
  #stars {
    font-size: 70%;
    width: 80%;
  }
  /* line 771, assets/stylesheets/site.css.scss */
  #stars .gumroad, #stars a {
    display: none;
  }
  /* line 774, assets/stylesheets/site.css.scss */
  #rating {
    font-size: 70%;
    line-height: 150%;
    transform: rotate(0deg);
  }
  /* line 779, assets/stylesheets/site.css.scss */
  #rating .hide-mobile {
    display: none;
  }
  /* line 782, assets/stylesheets/site.css.scss */
  #rating .author {
    font-size: 60%;
  }
}

@media only screen and (max-width: 450px) {
  /* line 788, assets/stylesheets/site.css.scss */
  #copies-sold {
    width: 90px;
    height: 90px;
    line-height: 90%;
  }
  /* line 793, assets/stylesheets/site.css.scss */
  #copies-sold .number {
    display: block;
    padding-top: 30px;
    padding-left: 20px;
    font-size: 95%;
  }
  /* line 800, assets/stylesheets/site.css.scss */
  #copies-sold .text {
    font-size: 60%;
  }
}

@media only screen and (max-width: 400px) {
  /* line 806, assets/stylesheets/site.css.scss */
  #copies-sold {
    top: 450px;
  }
}

/* line 811, assets/stylesheets/site.css.scss */
#topics {
  margin: auto;
  max-width: 1070px;
  display: flex;
}

/* line 816, assets/stylesheets/site.css.scss */
#topics .topic {
  flex: 1;
  padding: 10px;
}

/* line 820, assets/stylesheets/site.css.scss */
#topics .topic p {
  font-size: 100%;
  color: #f2f2f2;
}

/* line 825, assets/stylesheets/site.css.scss */
#topics .topic p.icon {
  font-size: 150%;
}

/* line 829, assets/stylesheets/site.css.scss */
#topics .topic p.smaller {
  font-size: 85%;
}

@media only screen and (max-width: 800px) {
  /* line 836, assets/stylesheets/site.css.scss */
  #topics {
    display: block;
    padding: 15px;
  }
}

/* line 842, assets/stylesheets/site.css.scss */
#blackbox {
  margin: auto;
  max-width: 1050px;
  display: flex;
}

/* line 847, assets/stylesheets/site.css.scss */
#blackbox div {
  flex: 1;
}

/* line 851, assets/stylesheets/site.css.scss */
#blackbox p {
  width: 90%;
}

/* line 856, assets/stylesheets/site.css.scss */
#podcasts div {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 5px;
}

/* line 861, assets/stylesheets/site.css.scss */
#podcasts div a {
  color: black;
  margin: 10px 20px;
  display: flex;
  width: 100%;
  text-decoration: none;
}

/* line 868, assets/stylesheets/site.css.scss */
#podcasts div a img {
  display: block;
}

/* line 872, assets/stylesheets/site.css.scss */
#podcasts div a div {
  padding-left: 15px;
  padding-top: 22px;
}

/* line 878, assets/stylesheets/site.css.scss */
#podcasts div a:hover {
  color: gray;
}

/* line 881, assets/stylesheets/site.css.scss */
#podcasts div a:hover img {
  opacity: 0.9;
}

@media only screen and (max-width: 1100px) {
  /* line 888, assets/stylesheets/site.css.scss */
  #blackbox {
    display: block;
    margin: 0 25px;
  }
  /* line 892, assets/stylesheets/site.css.scss */
  p {
    width: 100%;
  }
}

/* line 897, assets/stylesheets/site.css.scss */
#chapters {
  margin: auto;
  max-width: 1070px;
  padding: 10px;
}

/* line 903, assets/stylesheets/site.css.scss */
#chapters a, #chapters a:hover {
  color: black;
}

/* line 907, assets/stylesheets/site.css.scss */
#chapters .chapter {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ebebeb;
  min-height: 140px;
  font-size: 90%;
}

/* line 918, assets/stylesheets/site.css.scss */
#chapters .chapter:nth-child(even) {
  float: right;
  width: 45%;
  border-left: 1px solid #ebebeb;
}

/* line 924, assets/stylesheets/site.css.scss */
#chapters .chapter:nth-child(odd) {
  float: left;
  width: 45%;
  border-right: 1px solid #ebebeb;
}

/* line 931, assets/stylesheets/site.css.scss */
#chapters .chapter p {
  margin-bottom: 0;
  font-size: 95%;
  color: #333333;
}

/* line 937, assets/stylesheets/site.css.scss */
#code {
  margin: auto;
  max-width: 1070px;
  padding: 10px;
  display: flex;
}

/* line 945, assets/stylesheets/site.css.scss */
#code-info div {
  margin-left: 5%;
  padding: 0 8%;
  border: 1px solid #e0e0e0;
  padding-bottom: 35px;
  border-radius: 15px;
}

/* line 954, assets/stylesheets/site.css.scss */
#cat {
  text-align: center;
}

/* line 958, assets/stylesheets/site.css.scss */
#cat img {
  width: 500px;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  /* line 964, assets/stylesheets/site.css.scss */
  #demo {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 900px) {
  /* line 970, assets/stylesheets/site.css.scss */
  #code {
    display: block;
  }
  /* line 974, assets/stylesheets/site.css.scss */
  #code-info div {
    margin: 0 10px;
    padding: 0 8%;
    border: 1px solid #e0e0e0;
    padding-bottom: 35px;
    border-radius: 15px;
  }
}

@media only screen and (max-width: 550px) {
  /* line 985, assets/stylesheets/site.css.scss */
  #cat img {
    width: 90%;
  }
}

/* line 990, assets/stylesheets/site.css.scss */
#gallery {
  margin: auto;
  max-width: 750px;
  padding: 10px;
}

/* line 996, assets/stylesheets/site.css.scss */
#gallery a {
  margin: 15px;
  display: block;
  float: left;
}

/* line 1002, assets/stylesheets/site.css.scss */
#gallery a img {
  width: 150px;
}

@media only screen and (max-width: 800px) {
  /* line 1008, assets/stylesheets/site.css.scss */
  #gallery {
    max-width: 540px;
    padding: 15px;
    margin: auto;
  }
}

@media only screen and (max-width: 600px) {
  /* line 1016, assets/stylesheets/site.css.scss */
  #gallery {
    max-width: 365px;
    padding: 15px;
    margin: auto;
  }
}

/* line 1023, assets/stylesheets/site.css.scss */
#testimonials {
  max-width: 1000px;
  margin: auto;
  display: flex;
}

/* line 1028, assets/stylesheets/site.css.scss */
#testimonials div {
  flex: 1;
}

/* line 1029, assets/stylesheets/site.css.scss */
#testimonials p {
  width: 90%;
}

/* line 1032, assets/stylesheets/site.css.scss */
#gumroad {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  margin: 35px 0;
  margin-right: 30px;
}

/* line 1040, assets/stylesheets/site.css.scss */
#wall {
  font-size: 90%;
}

/* line 1043, assets/stylesheets/site.css.scss */
#wall .author {
  padding-bottom: 20px;
}

/* line 1047, assets/stylesheets/site.css.scss */
#wall .occupation {
  font-size: 80%;
  color: grey;
}

@media only screen and (max-width: 1100px) {
  /* line 1054, assets/stylesheets/site.css.scss */
  #testimonials {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 800px) {
  /* line 1060, assets/stylesheets/site.css.scss */
  #testimonials {
    display: block;
  }
  /* line 1062, assets/stylesheets/site.css.scss */
  #testimonials p {
    width: 100%;
  }
  /* line 1066, assets/stylesheets/site.css.scss */
  #gumroad {
    margin: 35px 0;
  }
}

/* line 1071, assets/stylesheets/site.css.scss */
#authors {
  max-width: 660px;
  margin: auto;
  padding: 10px;
}

/* line 1076, assets/stylesheets/site.css.scss */
#authors img.author {
  float: left;
  border-radius: 50%;
  border: 3px solid #f7e81f;
  background: white;
  margin-right: 25px;
  margin-bottom: 20px;
}

/* line 1086, assets/stylesheets/site.css.scss */
#faq {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 20px;
  display: flex;
}

/* line 1092, assets/stylesheets/site.css.scss */
#faq p {
  width: 90%;
}

@media only screen and (max-width: 1100px) {
  /* line 1098, assets/stylesheets/site.css.scss */
  #faq {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 800px) {
  /* line 1104, assets/stylesheets/site.css.scss */
  #faq {
    display: block;
  }
  /* line 1106, assets/stylesheets/site.css.scss */
  #faq p {
    width: 100%;
  }
}

/* line 1112, assets/stylesheets/site.css.scss */
#startreading {
  max-width: 650px;
  margin: auto;
}

/* https://dev.to/joeattardi/let-s-make-a-css-cube-1fed */
/* line 1118, assets/stylesheets/site.css.scss */
.container {
  width: 50px;
  height: 50px;
  perspective: 2000px;
  margin: 25px;
}

/* line 1125, assets/stylesheets/site.css.scss */
.face {
  width: 50px;
  height: 50px;
  background: black;
  border: 2px solid black;
  position: absolute;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 2rem;
}

/* line 1139, assets/stylesheets/site.css.scss */
.front {
  transform: translateZ(40px);
}

/* line 1143, assets/stylesheets/site.css.scss */
.back {
  transform: translateZ(-40px) rotateY(180deg);
}

/* line 1147, assets/stylesheets/site.css.scss */
.left {
  transform: translateX(-40px) rotateY(-90deg);
}

/* line 1151, assets/stylesheets/site.css.scss */
.right {
  transform: translateX(40px) rotateY(90deg);
}

/* line 1155, assets/stylesheets/site.css.scss */
.top {
  transform: translateY(-40px) rotateX(90deg);
}

/* line 1159, assets/stylesheets/site.css.scss */
.bottom {
  transform: translateY(40px) rotateX(-90deg);
}

@keyframes turn {
  from {
    transform: rotate3d(0, 0, 0, 0);
  }
  to {
    transform: rotate3d(1, 1, 0, 360deg);
  }
}

/* line 1168, assets/stylesheets/site.css.scss */
.cube {
  position: relative;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
  animation: turn 60s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1177, assets/stylesheets/site.css.scss */
  .cube {
    animation: none;
    transform: rotate3d(1, 1, 0, 45deg);
  }
}
