
.layout {
  max-width: 1200px;
  
  display: grid;
  grid:
    "header header header" auto
    "leftSide body rightSide" auto
    "left right right" auto
    "footer footer footer" auto
    / 4fr 1fr 1fr;
  gap: 30px;

  justify-content: center;
  margin: 0 auto;
}

body {
  font-family: url('Vampires/Albertsthal Typewriter.ttf'), sans-serif;
  margin: 0;
  
  /* you can delete the line below if you'd prefer to not use an image */
  background: url('Vampires/redskulls.jpg');
  background-size: 65px;
  color: black;
  background-color: black;
  }

.header { grid-area: header;
  background-color: #891f18;
  background-image: url('Vampires/oomoon.png');
  background-size: 100%;
    }

.navbox {
  background-color: #891f18;
  padding: 7px;
  justify-content: space-evenly;
    }

    .navbox ul{
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      justify-content: space-evenly;
        }

    .navbox li{
      float: left;
        }

    .navbox li a {
      display: inline-block;
      color: black;
      padding: 0px 7px;
      font-weight: 800;
      text-decoration: none;
        }

    .navbox li a:hover {
      color: white;
      text-decoration: underline;
        }

.leftSide { grid-area: leftSide; 
  background-color: #891f18;
  padding: 20px;
    }

.body { grid-area: body;
  background-color: #891f18;
  padding: 20px;
  justify-content: center;
    }

.rightSide { grid-area: rightSide;
  background-color: #891f18;
  padding: 20px;
    }

.left { grid-area: left;
  background-color: #891f18;
  padding: 20px;
    }

.middle { grid-area: middle;
  background-color: #891f18;
  padding: 20px;
    }

.right { grid-area: right;
  background-color: #891f18;
  padding: 20px;
    }

.footer { grid-area: footer;
  background-color: #891f18;
  padding: 20px;
    }

.titlebox {
  background-color: red;
  padding: 5px;
    }

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
    }

.active, .collapsible:hover {
  background-color: #555;
    }

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
    }  

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
    }

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
    }

 /* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
  background-color: red;
  min-height: 150px;
  max-height: 700px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 10px;
  text-align: left;
} 





/*Extra space :)*/