/* 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." */

/* ---------------------- HTML CUSTOMIZATION ---------------------- */

html {
  background-color: #000;
  color: #fff;
}

/* ---------------------- BODY CUSTOMIZATION ---------------------- */

body {
  margin: auto;
  width: 75%;
  font-family: 'VCROSDMONO';
  font-size: 16px;
}

/* ---------------------- FONT CUSTOMIZATION ---------------------- */

@font-face {
    font-family: "VCROSDMONO";
    src: url("/VCR_OSD_MONO_1.001.ttf")  format("truetype");
}

/* ---------------------- SCROLLBAR CUSTOMIZATION ---------------------- */

/* set the sidebar width */
::-webkit-scrollbar { width: .25em;}

/* set the sidebar track color */
::-webkit-scrollbar-track { background: #fff; }

/* set the sidebar button colors */
::-webkit-scrollbar-thumb {
background: #000;
border: 0px; }

/* ---------------------- SELECTION CUSTOMIZATION ---------------------- */

::selection { color: #6C60FF; background: #fff; }

/* ---------------------- LINK CUSTOMIZATION ---------------------- */

/* unvisited link */
a:link {
  color: #6C60FF;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: violet;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #fff;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: #6C60FF;
  text-decoration: none;
}

