/* 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: 'ldcBlackRound';
  src: url('fonts/ldcBlackRound.ttf') format("truetype");
} 

.inline {
  display: inline;
}

.vl {
  top: 0;
  right: 5%;
  height: 100%;
  position: absolute;
  border-left: 2px solid white;
}

/*Headers*/
h1 {
  width: 100%;
  border-bottom: solid 4px white;
}

h2 {
  width: 50%;
  border-bottom: solid 1px white;
  outline-offset: -5px;
}

/*HTML*/
html {
  position: relative;
  min-height: 100%;
}

/*Body*/
body {
  background-color: black;
  color: white;
  font-family: "ldcBlackRound";
}

/*Footer*/
footer {
  width: 100%;
  border-top: solid 2px white;
  position: absolute; 
  left: 0;
  bottom: 0;
  overflow: hidden;
}

/*Links*/
a:link, a:visited {
  color: white;
}
a:hover {
  background-color: gray;
}