body {
  background-image: url('../TheChairs_Assets/bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  
  font-size: 14px;
  font-family: monospace, "monospace", sans-serif;
  margin: 0;
  
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;      /* Centers vertically */
  min-height: 100vh;        /* Makes the body take up the full screen height */
}

p {
  line-height: 1.6em;
}

hr {
  border: solid #c7b591;
  border-width: 6px 0 0 0;
}

h1, h2, h3, h4, h5 {
  font-family: monospace, Geneva, sans-serif;
  color: #2f5f8f;
  text-align: left;
}

.Spread {
  
  position: relative;
  width: 900px;                    
  height: 750px;
  
  box-sizing: border-box;    /* CRUCIAL: Includes padding in the width/height calculation */
  padding-top: 20px;
  padding-left: 60px;
  
  background-image: url('NotebookSpread.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  
  align-items: center;
  text-align: justify;
  
  display: grid;
  grid-template-columns: 370px 370px;
  grid-template-rows: 100px 500px;
  column-gap: 35px;
} 

#header {
  grid-column: 1 / span 2;
  grid-row: 1;
  
  text-align: start;
  padding-left: 20px;

  
  margin-bottom: 20px; /* Pushes the pages down a bit */
}

.PageContainer {
  display: contents;/* Creates the "spine" gap in the middle of the notebook */
}

.LeftPage {
  grid-column: 1;
  grid-row: 2;
  padding-right: 10px;
  }
  
.RightPage {
  grid-column: 2;
  grid-row: 2;
  padding-right: 10px;
  }

.Page {
  height: 100%;
  overflow-y: auto;          /* Adds a scrollbar inside the page if text is too long */
  padding: 10px;
  color: #333;              
  box-sizing: border-box;
}

