body{
 background-image: url('images/bginfo.jpg');
 background-repeat: no-repeat;
 background-attachment: fixed;
 background-size:cover;
 color:white;
 text-shadow: 0 0 5px mediumblue;
 text-align:center
}

h1{
 text-shadow: 0 0 20px mediumblue;
 font-size:300%
}

h2{
 text-shadow: 0 0 13px mediumblue;
 font-size:230%
 }

h3{
 text-shadow: 0 0 9px mediumblue;
 font-size:190%
 }

h4{
 text-shadow: 0 0 4px mediumblue;
 font-size:140%
 }

h5{
 text-shadow: 0 0 3px black;
 font-size:100%;
 color:red;
 text-align:left
 }

table{
 text-align:center;
 width:100%;
 height:800;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted red;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 600px;
  height: 327px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  top: 135%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 5%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  opacity:0.7;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.active {
  background-color: green;
  opacity:0.7;
  color: white;
}

.dropdown-container {
  display: none;
  background-color: #262626;
  opacity:0.7;
  padding-left: 8px;
}

.fa-caret-down {
  float: right;
  padding-right: 8px;
}