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


/* General formatting */

body {
  background-color: wheat;
  color: black;
  font-family: Georgia, serif;
}

  a {
   color: black;
}

        .eh {
               text-shadow: 2px 4px 4px rgb(0 0 0 / 0.6);
        }
        
  .musicfooter {
          margin: 20px 0;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          border: 5px double brown;
          background-color: linear(sienna, wheat);
          text-align: center;
        }
  

/* Book script courtesy of https://ribo.zone/free/snippets/ */
.book {
  border: 5px solid brown;
  background-color: white;
  border-radius: 15px;
  padding: 0 4px;
  width: 1000px; /* adjust size */
  max-width: 100%;
  display: flex;
}
.pageL,	.pageR {
  height: 100%;
  width: 50%;
  display: inline-block;
  position: relative;
  border-radius: 10px;
}
.pageL {
  border-left: 1px grey solid;
}
.pageR { 
  border-right: 1px grey solid;
}
.seam {
  width: 7px;
  background:
    linear-gradient(to right,
    white, grey, white);
}
	