html {
  cursor: url("images/cursorsm.png"), auto !important;
  background-image: url("books/images/corner.png"), url("books/images/texturebg.jpeg");
  background-size: 30%, 50%;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, scroll;
}
@font-face {                  
font-family: 'leMurmure';
src: url(https://humantooth.neocities.org/fonts/LeMurmure-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
::-webkit-scrollbar {
 width: 3px; 
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #8c2717; 
}
::-webkit-scrollbar-thumb:hover {
  background: #6b2717; 
}
a {
  cursor: url("images/cursorhover2.png"), auto !important;
  color: #c6bb50;
  font-weight: bold;
  text-align: center;
  border-style: solid;
  border-color: transparent;
  border-width: 2px;
  padding: 2px;
}
body {
 
  color: #d8e1e8;
  font-family: Verdana;
}
p {
  margin-left: 5px; 
}
h1 {
  font-family: 'leMurmure';
  font-size: 55pt;
  margin: 20px;
}
h2{
  font-family: 'leMurmure';
  font-size: 30pt;
  margin: 15px;
}
h3 {
  font-family: 'leMurmure';font-size: 25pt;
  background-size: 50%;
  background-color: #519ead;
  text-align: center;
  border-color: transparent;
  border-style: solid;
  border-width: 3px;
  border-radius: 10px;
  padding: 3px;
}
h4 {
  font-family: 'leMurmure';font-size: 20pt;
  margin: 3px;
}

.container {
  display: grid;
  grid-template-areas:
  "header header"
  "navigation navigation"
  "box1 box2"
  "box3 box4";
  grid-template-columns: 500px 500px;
  gap: 20px;
  padding: 15px;
  margin-left: 150px;
  margin-right: 100px;
}
.header {
  grid-area: header;
  background-color: #2d5964;
  padding: 20px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.navigation {
  grid-area: navigation;
  position: sticky;
  top: 0;
  background-color: #2d5964;
  padding: 8px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.box1 {
  grid-area: box1;
  background-color: #2d5964;
  padding: 10px;
  height: 400px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.box2 {
  grid-area: box2;
  background-color: #2d5964;
  background-image: url('books/images/decal1.png');
  background-size: 20%;
  background-position: 98% 4%;
  background-repeat: no-repeat;
  padding: 10px;
  height: 400px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.box3 {
  grid-area: box3;
  background-color: #2d5964;
  padding: 10px; 
  height: 400px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.box4 {
  grid-area: box4;
  background-color: #2d5964;
  padding: 10px;
  height: 400px;
  border-style: solid;
  border-color: #8c2717;
  border-radius: 4px;
  border-width: 4px;
}
.paragraph {
  max-height: 300px;
  overflow-y: auto; 
}
.paragraph td {
  border-style: solid;
  border-color: #d8e1e8;
  border-width: 2px;
  padding: 3px;
}
  
  