/* crux */
body {
  background-image: url("https://files.catbox.moe/slmjkp.gif");
  color: #c77dff;
  font-family: "TheGoodMonolith", sans-serif;
  background-color: #0f0529;
}

#all {
  width: 60%;
  margin: 0 auto;
}

/* header */

#header {
  width: auto;
  height: 200px;
  border-top: 5px solid #10002b;
  border-left: 5px solid #10002b;
  border-right: 5px solid #10002b;
  border-bottom: 0px;
  background-color: #3a0470;
  background-image: url("https://files.catbox.moe/q1cs7j.png");
  background-position: center center;
  background-size: 1020px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#title {
  margin: 0;
  text-align: center;
  color: #efe1f8;
  text-shadow: 1px 1px 10px #0f0529;
  font-size: 64px;
}

/* navigation */

#navbox {
  margin: 0px 0px 20px 0px;
  width: auto;
  background-color: #3a0470;
}

#navbox ul {
  margin: 0;
  padding: 10px;
  text-align: center;
  border: 5px solid #10002b;
}

#navbox li {
  list-style-type: none;
  display: inline;
  font-size: 19px;
  margin: 10px;
}

/* umm */

.main {
  width: auto;
}

.post {
  width: auto;
}

/* stupid fucking grids */

.container {
  display: grid;
  grid-template-areas:
    "menu content"
    "footer footer";
  width: auto;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
}

.container > div.menu {
  grid-area: menu;
}
.container > div.content {
  grid-area: content;
}

/* makes grids look pretty */

.container > div {
  width: auto;
  padding: 20px;
  border: 5px solid #10002b;
  background-color: #3a0470;
}

.textborder {
  background-color: #5706a8;
  border: 1px #10002b;
  padding: 15px;
  font-size: 15px;
}

/* links */

a {
  color: #c77dff;
  text-decoration: none;
}

a:hover {
  color: #efe1f8;
}

/* scrollbar */

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

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c77dff;
}

/* little guy (hey its me!) */

#footer {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10;
  width: 20%;
}
#footer img {
  width: 100%;
}