body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  background: #031200 url("/nervbackground.jpg") fixed; /*Replace with your own background*/
	color: #101000
	}
	
a {
  color: #0d8500;
  }

/*Main text section*/
.main { 
  border-radius: 5px;
  background: #c06eff;
  border: 5px solid #6effc0;
  width: 600px;
  padding:15px;
  margin: 20px 25px 25px 400px;
  }
  
/*Prevent overflow of large images*/
.main img, .sidebar-left img {
  max-width: 100%;
  height: auto;
  }
  
/*Sidebar*/
.sidebar-left {
  background: #c06eff;
  border: 5px solid #6effc0;
  width: 250px;
  margin-left:75px;
  padding:15px;
  margin-top:-25px;
  min-height:100%;
  position:fixed;
  overflow:auto;
  text-align:center;
  }

/*Sidebar*/
.sidebar-right {
  background: #fefefe;
  border: 1px solid #0d8500;
  width: 105px;
  margin-left:1275px;
  padding:15px;
  margin-top:-25px;
  min-height:100%;
  position:fixed;
  text-align:center;
  }
  
.vertmarquee {
  font-family:Monaco, monospace;
  font-size:16px;
  color:#ff2424;
  background-color:#ff7936;
  border: 5px solid #ff2424;
  padding:15px;
  width: fit-content;
  min-height: :100%;
  margin-left:1515px;
  position:fixed;
  margin-top:-25px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.vertbar {
  font-family:Monaco, monospace;
  font-size:16px;
  color:#ff2424;
  background-color:#ff7936;
  border: 5px solid #ff2424;
  padding:0px;
  width: 100px;
  margin-left:1350px;
  position:fixed;
  margin-top:-25px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.section-title {
    text-align:center;
    font-weight:bold;
    padding-top:5px;
    padding-bottom:5px;
    background-color:#6effc0;;
    color:#13012e
    font-size:12px;
}

.blink_text{	
  animation-name:blink;
  animation-duration:1s;
  animation-timing-function:ease-in;
  animation-iteration-count:Infinite;
  }

@keyframes blink{
  0%{color:red;}
  50%{color:black;}
  100%{color:red;}
}

/*Use with <ul> to create a button section in the sidebar.*/
.buttons {
  list-style-type:none;
  padding:3px;
  }
  
/*Use with <li> for individual buttons.*/
.button { 
  text-align:center;
  border-radius: 5px;
  border: 1px solid green;
  padding: 10px;
  margin:5px;
  margin-top:10px;
  margin-bottom:10px;
  }
  
.sideimage { /*optional*/
  right: 250px;
  bottom:-20px;
  float: right;
  position: fixed;
  max-width: 450px;
  }
  
.sideimage img {
  max-width: 200%;
  height: auto;  
  }

  
@media(max-width: 1440px) {
    .sideimage {
      max-width: 0%;
      /*if this can be executed, override the previous rule, otherwise hide the side image*/
      max-width: calc(100% - 975px);
      }
  }
  
@media(max-width: 1200px) {
    .sidebar-left {
      margin-left: 25px;
      }
    
    .main {
      margin-left: 350px;
      }
  
    .sideimage {
      right: 5px;
      max-width: 0%;
      /*if this can be executed, override the previous rule, otherwise hide the side image*/
      max-width: calc(100% - 900px);
      }
  }
  
@media(max-width: 1000px) {
  
    .sidebar-left {
      margin-left: 5px;
      }
    
    .main {
      margin-left: 330px;
      }
  
    .sideimage {
      /*don't even bother at this point*/
      display: none;
      }
  }

  
/*Tentative mobile support.*/
@media(orientation:portrait) {
  .sidebar-left {
    min-height:0px;
    width: 100%;
    margin: 0 auto;
    top:0;
    left: 0;
    padding: 0;
    font-size: 0.9em;
    position: relative;
    border-radius: 5px;
    }
    
  .main {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    }
    
  .sideimage {
    /*don't even bother*/
    display: none;
    }
  }