body, html {
  background-color: #131313;
  color: #b4b4b4;
  font-family: tahoma;
  font-size: 11px;
  text-align: justify;
    padding: 0 !important;
    margin: 0 !important;
}

/*sets body height to max; and allows scrollbar as page content grows*/
body{
    min-height: 100vh;
}
  
  .left-right {

    height:99%;
    width:200px;
    float: right;
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px;
    background-color:#131313;
    overflow: hidden;
     z-index: 100000; 
}



.slider {
  overflow: hidden;
    width:200px;
    height:99%;
    position:absolute;
    top:0;
    right:-200px;
    padding: 2px;
    background-color:#b4b4b4;
    color:#131313;
    transition:0.4s ease;
}

.left-right:hover .slider {
  right:0;
}

#footer-content {
  position: absolute;
  bottom: 0;
  left: 0;
}
