body {
  
  background-color: white;
  background-image: url("https://piemousetrap.neocities.org/lined%20paper%20texture.jpg");
  color: black;
  font-family: Courier;
  font-size: 15px;
  font-weight: bold;
}

img  {
  max-width: 850px;
}


.header {
  margin: 0 auto;
  justify-content: center;
  display: block;
  box-sizing: border-box;
  width: 850px;
  height:200px;
  
}
.slidebar {
  display: block;
  background-image: url("https://piemousetrap.neocities.org/images/bgangel2.jpg");
  background-size: 120%;
  grid-area: slidebar;
  word-wrap: break-word;
  background-color: white;
  padding:10px;
  width:120px;
  height:475px;
}
.main {
  display: block;
  word-wrap: break-word;
  background-color: white;
  border-radius: 15px;
  overflow: auto;
  box-sizing: border-box;
  width: 820px;
  padding:10px;
  height:495px;
}
.footer {
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
  background-color: white;
  width: 850px;
}
.container {
  max-width: 970px;
  justify-items: center;
  display: grid;
  margin: 0 auto;
  grid-template-columns: 50px 50px 50px 50px;
  grid-template-rows: auto;
  grid-gap: 0px;
  grid-template:
    "header header"
    "slidebar main"
    "footer footer"
    / 100px 1fr;
}

a:link {
  color: #6e2414;
}

/* visited link */
a:visited {
  color: #4a0b21;
}

/* mouse over link */
a:hover {
  color: #782f10;
}

/* selected link */
a:active {
  color: #ad2a0c;
}

header { grid-area: header; }
aside { grid-area: sidebar; }
main { grid-area: main; }
footer { grid-area: footer; }
