@font-face {
	font-family: 'powerchord';
	src: url('fonts/PowerChord.eot?#iefix') format('embedded-opentype'), 
	     url('fonts/PowerChord.woff') format('woff'), 
	     url('fonts/PowerChord.ttf')  format('truetype'),
	     url('fonts/PowerChord.svg#svgFontName') format('svg');
	}
	
@font-face {
  font-family: 'prototype';
	src: url('fonts/Prototype.eot?#iefix') format('embedded-opentype'), 
	     url('fonts/Prototype.woff') format('woff'), 
	     url('fonts/Prototype.ttf')  format('truetype'),
	     url('fonts/Prototype.svg#svgFontName') format('svg');
  }

body {
  background-image: url("https://bluescreening.neocities.org/icons_and_such/starsbackground.gif");
  font-size: 100%; /*Apparently neccessary to get em font sizes to work on some browsers*/
  font-family: 'prototype';
  color: blue;
}

h1 {
  color: blue;
  font-family: "powerchord";
  font-weight: 100;
  font-size: 4em;
  text-shadow: 3px 3px white;
}

h2 {
  font-family: "powerchord";
  font-weight: 100;
  font-size: 3em;
  text-decoration-line: underline;
  text-decoration-color: white;
}

h3 {
  font-family: "prototype", sans-serif;
  color: white;
  font-size: 2em;
}

h4 {
  color: cyan;
  font-size: 1em;
}

img {
  margin: auto;
}

td {
  border-bottom: 1px solid;
  padding: 15px;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  margin: auto;
}

th {
  margin: auto;
}

a:link {
  color: Cyan;
}

a:visited {
  color: DodgerBlue;
}

a:hover {
  color: Chartreuse;
}

a:active {
  color: White;
}

.headerbig {
  background-image: url("https://bluescreening.neocities.org/23style/bigheaderbg.png");
  margin: 5px 10% 5px;
  width: 80%;
  height: 200px;
  border-radius: 10px;
  border: 2px solid white;
  text-align: center;
}

.headersmall {
  background-image: url("https://bluescreening.neocities.org/23style/smallheaderbg.png");
  margin: 5px 10% 5px;
  width: 80%;
  height: 80px;
  border-radius: 10px;
  border: 2px solid white;
  text-align: center;
}

.navbar {
  text-align: center;
  background-color: black;
  width: 80%;
  margin: 5px 10% 5px;
  font-family: "prototype", sans-serif;
  border-radius: 10px;
  font-size: 1.5em;
  border: 2px solid white;
}

.navbar li{
  display: inline-block;
  list-style-type: none;
}

.navbar a{
  text-decoration: none;
}

.sidebar{
  text-align: left;
  background-color: black;
  width: 15%;
  margin-left: 10%;
  margin-right:0px;
  margin-top:5px;
  margin-bottom:5px;
  font-family: "prototype", sans-serif;
  border-radius: 10px;
  float: left;
  position: sticky;
  top: 10px;
  border: 2px solid white;
  height: auto;
}

.sidebar li{
  list-style-type: none;
}

.sidebar ul{
  padding: 0px;
  margin: 15px;
}

.content {
  margin-left: 0px;
  margin-right:10%;
  margin-top:5px;
  margin-bottom:5px;
  padding: 20px;
  text-align: center;
  background-color: black;
  border: 2px solid blue;
  border-radius: 10px;
  float: right;
  width: 60%
}

@media screen and (max-width: 800px) {
  .content{
    margin: 5px 5% 5px;
    width: 80%;
  }
  .headerbig {
    margin: 5px 2.5% 5px;
    width: 95%;
    height: 140px;
  }
  
  img{
    width: 70%;
  }
  
  .headersmall{
    margin: 5px 2.5% 5px;
    width: 95%;
  }
  .navbar{
    margin: 5px 2.5% 5px;
    width: 95%;
  }
  .sidebar{
    width: 80%;
    position: relative;
}