: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

}
a {
    color: var(--clrL);
}
h1 {
    color: var(--clrT);
}
h2 { 
    color: var(--clrT);
}

h3 { 
    color: var(--clrT);
}

h4 { 
    color: var(--clrT);
}

h5 { 
    color: var(--clrT);
}

h6 { 
    color: var(--clrT);
}

/*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 var(--clrBx);
    height: 600px;
    width: 310px;
    background: var(--clrB);
    float: inline-end;
    color: var(--clrT);
    line-height: 20px;
    margin-right: 100px;
    padding-left: 1em;
    text-align: left;
}
#jumpto a {
    color: var(--clrT);
    font-weight: 800;
    text-decoration: none;
    list-style-type: none;
    background: var(--clrP) padding-box;
    padding: 0.2em;
}
#jumpto a:hover {
    color: var(--cltL);
    text-decoration: underline;
    font-size: 105%;
}
/*Posts section*/
#posts {
    margin: auto;
    margin-top: 1.3em;
    overflow: scroll;
    max-height: 960px;
    width: 1000px;
    color: var(--clrT);
    float: inline-start;
    margin-left: 430px;
    /*hides the scrollbar*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#posts p {
    color: var(--clrT);
    background: var(--clrP) padding-box;
    padding: 0.2em;
    width: 70%;
    border-radius: 5px;
    text-shadow: none;
    margin: auto;
}

/*gallery sections*/
.gallery {
    height: auto;
    width: 700px;
    background-color: var(--clrB);
    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;
    color: var(--clrT);
    width: fit-content;
    height: fit-content;
    border: double 6px var(--Bx);
}
.whiteBorder h3 {
    color: var(--clrT);
}
.whiteBorder1 {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: double 6px var(--clrBx);
    border-radius: 0px;
    padding: 1em;
}
.whiteBorder2 {
    margin: auto;
    width: fit-content;
    height: fit-content;
    border: dotted 2px var(--clrBx);
}
.pictureFrame {
    margin: auto;
    width: 30%;
    height: 90%;
    border: double 4px var(--clrBx);
    display: inline-grid;
    grid-auto-flow: column;
    border-radius: 0px;
    
}
.spacer {
    max-width: 250px;
    background: var(--clrB);
    margin: 1em auto;
    padding: 2%;
    color: var(--clrP);
}
.contentbox {
    margin: auto;
    margin-left: 0;
    height: 70px;
    max-width: 330px;
    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;
}



/*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;
  }


  .undertitle p {

    width: 10%;
    
  }
