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

img  {

  max-width: 750px;
  text-align: center;
}
text {
  padding: 10px;
}
h1 {
  text-align: left;
  font-size: 24px;

}
h2 {
  text-align: left;
  font-size: 15px;
}
sub1{
text-align: center;
font-size: 12px;
padding:1px;

}

::-webkit-scrollbar {
  width: 10px;
}

li {
  text-align: left;
}

.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:630px;
}
.main {
  display: block;
  word-wrap: break-word;
  background-color: white;
  border-radius: 15px;
  overflow: auto;
  text-align:left;
  box-sizing: border-box;
  width: 820px;
  padding:20px;
  height:650px;
}
.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;
}

#right  {
float: right;    
 margin: 15px;
}

#left  {
float: left;    
 margin: 15px;
}

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