:root {
    --body-bg-image: url(https://i.postimg.cc/sg2cd5kn/background.jpg);
    --play-state: running;
}

/* background */
body, html {

    margin: 0;
    padding: 0;
    height: 100%;
    overflow:hidden;
    filter: blur(0.6px);

}

/*scrolling BG*/
@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: var(--play-state);
}
div {
    border-radius: 25px;
}
/* layout container*/
#container {
     max-width: 1400px;
     margin: 0 auto;
     text-align: center;
     padding: 10px;
}
/* header thingy */
#titleBar {
    height: 80px;
    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 {
    margin: auto;
    width: 1000px;
    border: 10px double #87bdd8;
    padding: 10px;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
}

/* side bar */
#sideBar {
    height: 700px;
    width: 200px;
    padding: 10px;
    background-color: #87bdd8;
    /*margin-left: 130px;*/
    color: #f0efef;
    display: inline-block;
    line-height: 1em;
}
#sideBar a {
    margin: 5px;
    padding: 5px;
    color: #f0efef;
    text-decoration: none;
}
#sideBar a:hover {
    text-decoration: underline;
    color: #b7d7e8;
}
#sideBar h3 {
    margin: 10px;
    padding: 4px;
}
#sideBar p {
    margin: 5px;
    padding: 5px;
    text-align: left;
}

/*main panel*/
#main {
    height: 700px;
    width: auto;
    background-color: #87bdd8;
    margin: auto;
    color: #f0efef;
    padding: 10px;
    display: inline-block;
    margin-left: 10px;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#main h3 {
    margin: auto;
}
#main p {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}
/* Jump to section*/
#jumpto {
    overflow: scroll;
    border: double 6px #f0efef;
    height: 600px;
    width: 250px;
    background-color: #87bdd8;
    float: inline-end;
    color: #f0efef;
    line-height: 20px;
    margin-right: 100px;
}
#jumpto a {
    color: #f0efef;
    font-weight: 800;
    text-decoration: none;
    list-style-type: none;
}
#jumpto a:hover {
    color: #b7d7e8;
    text-decoration: underline;
    font-size: 105%;
}
/*Posts section*/
#posts {
    margin: auto;
    overflow: scroll;
    max-height: 840px;
    width: 1000px;
    float: inline-start;
    margin-left: 430px;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/*gallery sections*/
.gallery {
    height: auto;
    width: 700px;
    background-color: #87bdd8;
    margin: 0 auto;
    color: #f0efef;
    padding: 30px;

}
.gallery h3 {
    margin: auto;
    color: #f0efef;
    line-height: 2em;
}
.gallery p {
    margin: auto;
    color: #f0efef;
}
.gallery img {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
/*DND illustration section*/
#dndsection {
    overflow: auto;
}
#dndsection img {

}


#blackboard {
    height: 420px;
    width: 700px;
    overflow: scroll;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/*Changelog*/
#changeLog {
    width: 300px;
    height: 90px;
    border: double 5px #f0efef;
    line-height: 1em;
    overflow: scroll; /*makes it a scrolling box*/
    padding: 5px;
    margin: auto;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#changeLog a {
    color: #f0efef;
}
#changeLog a:hover {
    color: #b7d7e8;
}

/*site Links*/
#siteLinks {
    background-color: #87bdd8;
    display: inline-block;
    overflow: auto;
    border: double 5px #f0efef;
    color:#f0efef;
    padding: 5px;
    width: 240px;
    height: 90px;
    float: right;
    margin: auto;
    margin-right: 70px;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#flowers {
    border: double 12px #87bdd8;
    width: 1300px;
    margin: auto;
    padding: 10px;
    height: 750px;
    position: relative;
    filter: grayscale(20%) opacity(80%);
    image-rendering: pixelated;
}
/* footer*/
footer {
    color: #f0efef;
    background-color: #87bdd8;
    width: 40%;
    height: 30px;
    padding: 5px;
    margin: auto;
    margin-top: 20px;
    border-radius: 25px;
}

/* reusable objects*/

.whiteBorder {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: double 6px #f0efef;
}
.whiteBorder1 {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: double 6px #f0efef;
    border-radius: 0px;
}
.whiteBorder2 {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: dotted 2px #f0efef;
}
.pictureFrame {
    margin: auto;
    width: 30%;
    height: 90%;
    border: double 4px #f0efef;
    display: inline-grid;
    grid-auto-flow: column;
    border-radius: 0px;
    
}
.spacer {
    max-width: 250px;
    background-color: #87bdd8;
    margin: auto;
    color: #f0efef;
}
.contentbox {
    margin: auto;
    height: 70px;
    max-width: 230px;
    overflow: scroll;
    text-align: left;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.note {
    text-align: left; 
    border: outset 2px #fff; 
    width: 400px; 
    padding-left: 5px;
    text-decoration: underline;
}
.codeBox {
    text-align: left;
    border: 3px solid #f0efef;
    padding: 5px;
    margin: 10px;
    margin-top: 50px;
    width: 490px;
    height: 200px;
    overflow: scroll;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


/*code by Mauricio Allende (https://getcssscan.com/css-checkboxes-examples)*/

  .checkbox-wrapper-6 .tgl {
    display: none;
  }
  .checkbox-wrapper-6 .tgl,
  .checkbox-wrapper-6 .tgl:after,
  .checkbox-wrapper-6 .tgl:before,
  .checkbox-wrapper-6 .tgl *,
  .checkbox-wrapper-6 .tgl *:after,
  .checkbox-wrapper-6 .tgl *:before,
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper-6 .tgl::-moz-selection,
  .checkbox-wrapper-6 .tgl:after::-moz-selection,
  .checkbox-wrapper-6 .tgl:before::-moz-selection,
  .checkbox-wrapper-6 .tgl *::-moz-selection,
  .checkbox-wrapper-6 .tgl *:after::-moz-selection,
  .checkbox-wrapper-6 .tgl *:before::-moz-selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::-moz-selection,
  .checkbox-wrapper-6 .tgl::selection,
  .checkbox-wrapper-6 .tgl:after::selection,
  .checkbox-wrapper-6 .tgl:before::selection,
  .checkbox-wrapper-6 .tgl *::selection,
  .checkbox-wrapper-6 .tgl *:after::selection,
  .checkbox-wrapper-6 .tgl *:before::selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after,
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper-6 .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper-6 .tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
  }
  .checkbox-wrapper-6 .tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-6 .tgl-light:checked + .tgl-btn {
    background: #9FD6AE;
  }

