/* 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." */
@font-face {
  font-family: "Black Kiyrand";
  src: url('../fonts/black-kiyrand/BlackKiyrand-Regular.ttf');
}

/* @font-face {
  font-family: "Brotheric";
  src: url('../fonts/brotheric/Brotheric\ Ink\ Bleed\ Demo.otf');
} */

@font-face {
  font-family: "Kidnapped";
  src: url('../fonts/kidnapped-at-old-times-free-font/KidnappedAtOldTimesFree-Polr.ttf');
}

/* @font-face {
  font-family: "Piston Black";
  src: url('../fonts/piston-black/PistonBlack-Regular.ttf');
} */

a {
  color:orange;
}

a:hover:not(.active) {
  color:red;
}

body {
  margin: 0;
  background-color: #000;
  color: #eee;
  font-family: MS gothic, Courier New;
}

h2 {
    font-family: 'Kidnapped', 'MS Gothic', 'Times New Roman'; 
    font-size: 80px;
    font-weight: normal;
    margin: 0%;
    padding: 0%;
}

h3 {
    font-family: 'Black Kiyrand', 'MS Gothic', 'Courier New'; 
    font-size: 40px;
    font-weight: normal;
    margin: 0%;
    padding: 0%;
}

ul {
  list-style-type: none;
  font-family: Courier New;
  margin: 0;
  padding: 0;
  width: 15%;
  background-color: #1f1f1f;
  position: fixed;
  height: 100%;
  overflow: auto;
  border: 1px solid #808080;
}

li a {
  display: block;
  color: #eee;
  padding: 8px 16px;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #808080;
}

li a.active {
  background-color: #808080;
  color: eee;
}

li a:hover:not(.active) {
  background-color: #555;
  color: eee;
}

li:last-child {
  border-bottom: none;
}

.main {
  margin-left:25%;
  padding: 3%;
  height: 100%;
}