/* 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: 'VCROSDMono';
    src: url('../VCROSDMono/vcr_osd_mono_1.001-webfont.woff2') format('woff2'),
         url('../VCROSDMono/vcr_osd_mono_1.001-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* center of screen */
.center {
    top: 50%;
    left: 33%;
    position: absolute;
    transform: translateX(50%) translateY(50%);
}

/* fullscreen */
.fullscreenDiv {
    width: 100%;
    height: auto;
    bottom: 0;
    top: 0;
    left: 0;
    position: absolute;
}

/* 404 background */
#uhoh {
  background-image: none;
  background-color: #000200; 
  }

/* bulletpoint list */
ul {
  list-style-position: inside;
  padding-left: 0;
}

/* image subtitle or other subtitle */
sub {
  color: #999999;
  font-family: "VCROSDMono";
  font-size: 15px;
  margin: 32px;
}

/* text link but not like an actual link. you'll see */
r {
  color: #CCC;
	font-size: 16px;
	font-family: "VCROSDMono";
	text-decoration: underline;
	cursor: pointer;
}

r:hover {
  color: #EEE;
}

 /* unvisited link */
a:link {
  color: #CCC;
}

/* visited link */
a:visited {
  color: #DDD;
}

/* mouse over link */
a:hover {
  color: #EEE;
}

/* clicked link */
a:active {
  color: white;
} 

/* button stuff */
.button {
  background-color: #666;
  border: none;
  color: #000;
  padding: 5px 5px;
  font-family: "VCROSDMono";
  text-align: center;
  cursor: pointer;
}

.button:hover {
  background-color: #888;
}

.button:active {
  background-color: #777;
}

body {
  /*background-color: #263238;*/
  background-color: black;
  background-image: linear-gradient(to bottom, #263238 0%, black 85% , black 100%);
  background-attachment: fixed;
  color: #BDBDBD;
  font-family: "VCROSDMono";  /* default is Lucida Console */
  font-size: 16px;
}