:root {
    --body-bg-image: url(https://i.postimg.cc/sg2cd5kn/background.jpg);
}

/* background */
body, html {

    margin: 0;
    padding: 0;
    height: 100%;
    overflow:hidden

}
@keyframes scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0% 100%;
  }
}
.scrollingBackground {
  height: 100vh;
  background-image: var(--body-bg-image);
  background-size: 300px;
  background-repeat: repeat; /* Horizontal repeat */
  background-repeat: repeat;
  animation: scroll 15s linear infinite; /* Infinite loop */
  animation-play-state: running;
}
div {
    border-radius: 25px;
}
/* layout container*/
#container {
     max-width: 1300px;
     margin: 0 auto;
     text-align: center;
     padding: 10px;
}

/* header thingy */
#titleBar {
    height: auto;
    line-height: 2px;
    background-color: #87bdd8;
    width: 40%;
    margin: auto;
    color: #f0efef;
}
 
/* navigation bar */
#navBar {
    height: 70px;
    background-color: #87bdd8;
    width: 60%;
    margin: auto;
    margin-bottom: 10px;
}
#navBar ul {
    padding: 20px;
    list-style-type: none;
    justify-content: space-evenly;
}
#navBar li {
    display: inline;
    padding: 10px;
}
#navBar li a {
    color: #f0efef;
    font-weight: 800;
    text-decoration: none;
    list-style-type: none;
}
#navBar li a:hover {
    color: #b7d7e8;
    text-decoration: underline;
    font-size: 115%;
}

/*middle section*/
#middle {
    width: 1300px;
    border: 10px double #87bdd8;
    padding: 10px;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
}

/*main panel*/
#main {
    height: auto;
    width: 760px;
    background-color: #87bdd8;
    margin: auto;
    color: #f0efef;
    padding: 10px;
    display: inline-block;
    margin-left: 10px;
}
#main h3 {
    margin: auto;
}
#main p {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}
#main a {
    color: #f0efef;
    text-decoration: none;
    font-size: 75%;
    margin: auto;
    padding: 10px;
}
#main a:hover {
    color: #b7d7e8;
    text-decoration: underline;
}
#posts {
    margin: 10px;
    padding: 10px;
    border: double 6px #f0efef;
    height: 540px;
    overflow: scroll;
    text-align: center;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#postPage {
    margin: 10px;
    padding: 10px;
    border: double 6px #f0efef;
    height: 635px;
    overflow: scroll;
    text-align: center;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* footer*/
footer {
    color: #f0efef;
    background-color: #87bdd8;
    width: 40%;
    height: 30px;
    padding: 5px;
    margin: auto;
    margin-top: 20px;
}

/* reusable objects*/

.whiteBorder {
    margin: auto;
    width: auto;
    height: auto;
    border: double 5px #f0efef;
}
.whiteBorder2 {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: dotted 2px #f0efef;
}
.postBorder {
    margin: auto;
    width: auto;
    height: auto;
    border: double 5px #f0efef;
    text-align: left;
}
.postBorder h3 {
    padding: 10px;
}
.postBorder a {
    color: #f0efef;
    font-weight: 800;
    text-decoration: none;
}
.postBorder a:hover {
    color: #b7d7e8;
    font-weight: 800;
    text-decoration: underline;
}
.note {
    text-align: left; 
    border: outset 2px #fff; 
    width: 400px; 
    padding-left: 5px;
    text-decoration: underline;
    list-style-type: circle;
}