/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: "Comic Sans MS", cursive;
  font-family: 'Open Sans', sans-serif;
  font-family: "Audiowide", sans-serif;
  color:#fff2e8;
  background-color:#0a0404;
  background-image: url('/SiteImages/TestBackground1.png');
  background-size: cover;
  background-attachment: fixed;
  text-align:center;
  overflow-x:hidden;
  overflow-y:scroll;
}

ul {
  list-style-position: inside;
  text-align: center;
}

a:link {
  color: #ffcb3b;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #eb7e2a;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #fff1cc;
  background-color: transparent;
  text-decoration: underline dotted #fff1cc;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
  background-color:#4a1508
}


/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color:#4a1508
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #d85500; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7c1e07; 
}

.sidebar-left {
      height: 100%;
      width: 18%;
      box-sizing: border-box;
      background: #0a0404;
      background-attachment: local;
      text-align: center;
      border-right: 5px ridge #4a1508;
      margin: auto;
      top: 0px;
      left: 0px;
      float: left;
      padding: 15px;
      overflow: hidden;
      position: fixed;
      z-index: 9;
      display: flex;
      flex-direction: column;
      }
      
.sidebar-right {
      height: 100%;
      width: 18%;
      box-sizing: border-box;
      background: #0a0404;
      background-attachment: local;
      text-align: center;
      border-left: 5px ridge #4a1508;
      margin: auto;
      top: 0px;
      right: 0px;
      float: right;
      padding: 15px;
      overflow: hidden;
      position: fixed;
      z-index: 9;
      display: flex;
      flex-direction: column;
      }
      
.ScrollBar {
      width: 100%;
      background: #0a0404;
      background-attachment: local;
      text-align: center;
      border: 5px solid #4a1508;
      overflow: hidden;
      position: static;
      clear:both;
      z-index: 1;
      background-color: #222;
      animation-name: color;
      animation-duration: 2.5s;
      animation-iteration-count: infinite;
}
      
 .FirstTextWindow {
      background: #0a0404;
      background-attachment: local;
      text-align: center;
      border: 5px groove #4a1508;
      margin-top: 2%;
      margin-left: 22%;
      margin-right: 22%;
      margin-bottom: 2%;
      padding: 15px;
      overflow: hidden;
      position: relative;
      }
 .NextTextWindow {
      background: #0a0404;
      background-attachment: local;
      text-align: center;
      border: 5px groove #4a1508;
      margin-top: 1%;
      margin-left: 22%;
      margin-right: 22%;
      margin-bottom: 2%;
      padding: 15px;
      overflow: hidden;
      position: relative;
      }
      
.NavPoly {
  width:100%;
  height:50px;
  background:#4a1508;
  margin-bottom:9%;
  display:flex;
  align-items:center;
  justify-content:center;
  clip-path: polygon(92% 0, 100% 28%, 100% 100%, 8% 100%, 0 72%, 0% 0%);
  transition-delay: 0.025s;
  transition-duration: 0.25s;
}

.NavPoly:hover {
 clip-path: polygon(100% 0, 100% 72%, 92% 100%, 0 100%, 0 28%, 8% 0);
}

.NavPoly:active {
 clip-path: polygon(100% 0, 100% 72%, 92% 100%, 0 100%, 0 28%, 8% 0);
}

.NavPoly:focus {
 clip-path: polygon(100% 0, 100% 72%, 92% 100%, 0 100%, 0 28%, 8% 0);
}

.NavPoly > h1 {
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.NavPoly a {
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
      
.Microblog {
  border: 5px groove #4a1508;
  background: #0a0404;
  margin-top:0px;
  margin-bottom:5px;
}

.MicroblogHeaderNormal {
  background-color:#eb7e2a;
  color:#0a0404;
}

.MicroblogHeaderGlad {
  background-color:#a1eb2a;
  color:#0a0404;
}

.MicroblogHeaderMellow {
  background-color:#6a2aeb;
  color:#0a0404;
}

.MicroblogHeaderLovely {
  background-color:#eb2a74;
  color:#0a0404;
}

.FontPicker {
  border: 2px solid #4a1508;
  background-color:#0a0404;
  color:#fff2e8;
  cursor:pointer;
  text-align:center;
  transition-duration:0.1s;
  height:130%;
}

.FontPicker:hover {
  background-color:#4a1508;
  color: #fff1cc;
}

.FontPicker:active {
    background-color:#fff1cc;
  color: #4a1508;
}

.FPLeft {
  margin-right:1.5%;
}

.FPMid {
 margin-right:3%;
 margin-left:3%;
}

.FPRight {
  margin-left:1.5%;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes color {
  0% {
    background-color: #0a0404;
  }
  50% {
    background-color: #D85500;
  }
  100% {
    background-color: #0a0404;
  }
}

@keyframes NavHover {
  0% {
  }
  100% {
  }
}