html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  max-width: 100%;
  min-width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #ffffff;
}
* {
  box-sizing: border-box;
  font-family: "MT";
}

h1 {
  font-family: "BLCKCHCRY";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

body {
  background-color: black;
  color: white;
  text-align: justify;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-items: center;
  width: 100%;
  min-height: 100%;
  height: 100%;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pagePanel {
  border: 0.01%;
  border-color: white;
  border-style: solid;
  /*   width: 50%; */
  padding-left: 1%;
  padding-right: 1%;
}

.menuPanel {
  flex-grow: 0.5;
  justify-content: left;
  display: flex;
  align-items: center;
}

.contentPanel {
  flex-grow: 8.5;
  display: flex;
  justify-content: left;
  align-items: start;
  padding-left: 2%;
  padding-right: 5%;
  padding-top: 1%;
  padding-bottom: 1%;
  display: flex;
  align-items: stretch;
  justify-items: stretch;
}

.contentPanel .postContainer {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
.contentPanel .postContainer img {
  max-width: 100%;
  height: auto;
}

.footerPanel {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.postButton {
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
}

@font-face {
  font-family: "BLCKCHCRY";
  src: url("https://file.garden/aHnJqrLkw3bqstDi/BLKCHCRY.TTF");
}

@font-face {
  font-family: "MT";
  src: url("https://file.garden/aHnJqrLkw3bqstDi/MonospaceTypewriter.ttf");
}

@media (max-width: 1200px) {
  .pagePanel {
    width: 100%;
  }
}
@media not (max-width: 1200px) {
  .pagePanel {
    width: 60%;
  }
}
