/* ** HTML ** */
html {
  background-color: #0a0a0a;
  background: url(ghosts2.png);
}
/* ** HTML end ** */

.container {  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr 1.2fr 1fr 0.8fr;
  grid-template-rows: 0.6fr 1.6fr 1.6fr 0.2fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    ". . header header . ."
    ". leftsidebar main main rightsidebar ."
    ". leftsidebar main main . ."
    ". . footer footer . .";
}

/*** Header ***/
.header {
  grid-area: header;
  background-image: url(image11.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 2px;
  color: #bfbfbf;
}

/*** Left sidebar ***/
.leftsidebar {
  grid-area: leftsidebar;
  background-color: #0d0d0d;
  border: solid;
  border-color: #1f1f1f;
  margin: 2px;
  padding: 20px;
  color: #bfbfbf;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}
.navigation {
  display: inline-block;
}

/* Left sidebar links */
.sidebarbulletpoints {
  list-style-image: url("batty.gif");
  display: inline-block;
  margin: 10px;
}
.leftsidebarlink {
  text-decoration: none;
  padding: 7px;
  margin: 5px;
  vertical-align: top;
  transition-duration: 0.4s;
  display: inline-block;
}
.leftsidebarlink:link {
  color: #cc0000;
}
.leftsidebarlink:visited {
  color: #bfbfbf;
}
.leftsidebarlink:active {
  color: #000;
  transform: skewX(4px);
}
.leftsidebarlink:hover {
  color: #fff;
  transform: translateY(4px);
  opacity: 0.6;
}


 /* Dropdown Button */
.dropbtn {
  background-image: url(image12.png);
  background-repeat: no-repeat;
  background-color: transparent;
  color: white;
  padding: 20px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(4px);
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #0d0d0d;} 



/*** Main ***/
.main {
  grid-area: main;
  background-color: #0d0d0d;
  border: solid;
  border-color: #1f1f1f;
  padding: 50px;
  color: #bfbfbf;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
  width: auto;
  height: auto;
  overflow: auto;
}
.maintext {
  text-align: center;
}
.divider {
  display: block;
  margin: 10px auto 10px auto;
  
}
.updatestodolist {
  display: flex;
  justify-content: center;
}
.updates {
  width: 200px;
  height: 150px;
  border: solid #1f1f1f;
  padding: 10px;
  background-color: black;
  overflow-y: scroll;
}
.todolist {
  width: 200px;
  height: 150px;
  border: solid #1f1f1f;
  padding: 10px;
  background-color: black;
  overflow-y: scroll;
}
.chaboxpoll {
  display: flex;
  justify-content: center;
}

/*** Right sidebar ***/
.rightsidebar {
  grid-area: rightsidebar;
  background-color: #0d0d0d;
  border: solid;
  border-color: #1f1f1f;
  margin: 2px;
  padding: 20px;
  color: #bfbfbf;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}

/*** Footer ***/
.footer {
  grid-area: footer;
  background-color: #0d0d0d;
  border: solid;
  border-color: #1f1f1f;
  margin: 2px;
  padding: 5px;
  color: #bfbfbf;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}

html, body , .container {
  height: 100%;
  margin: 0;
}