/* 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 {
  background-color: black;
  background-image: url("core/bg.png");
  color: white;
  font-family: Arial;
}

code {
  font-family: Consolas, "courier new";
  background-color: #1F1F1F;
}

a:link {
  color: SkyBlue;
  background-color: transparent;
}

a:visited {
  color: Thistle;
  background-color: transparent;
}

a:hover {
  color: LightCoral;
  background-color: transparent;
}

a:active {
  color: LemonChiffon;
  background-color: transparent;
}

.sidenav {
  height: 98%;
  width: 160px;
  position: fixed;
  z-index: 999;
  top: 0; 
  left: 0;
  background-color: #000; 
  text-align: center;
  border: solid 4px white;
  overflow-y: auto;
  padding-top: 12px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  font-size: 16px;
  color: SkyBlue;
  display: block;
}

.sidenav a:visited {
  color: Thistle;
}

.sidenav a:hover {
  color: LightCoral;
}

.sidenav a:active {
  color: LemonChiffon;
}

.content {
  margin-top: 20px;
  margin-left: 166px;
}

@media screen and (max-width: 960px) {
  .sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  .content {
  margin-top: 20px;
  margin-left: 0px;
  }
}

table, th, td {
  border: 2px solid white;
  padding: 4px;
}