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

body {
	background-color: black;
	font-family: Times, serif;
	font-size: 22px;
}

  #bg {
     
  position: absolute;
  height: 99%;
  width: 99%;
      
  }

.main {
	background-color: transparent;
	margin: 0px auto 50px auto;
	color: white;
	padding: 25px;
	border: none;
	text-align: center;
  width: 550px;

}

.main img {

height: auto;

}

@font-face {
  
font-family: "DFFont";
src: url("fonts/AcPlus_IBM_VGA_9x14.ttf") format("truetype");

}

@font-face {

  font-family: 'Cageroll-Outline';
  src: url('https://dl.dropbox.com/s/co82d7yb6dqak92/Cageroll-Outline.otf');

}

@font-face {

  font-family: 'Cageroll';
  src: url('https://dl.dropbox.com/s/kxq3b9cy9kcxjvp/Cageroll.otf');

}
  
@font-face {
  
  font-family: "Minecraftia";
  src: url("fonts/Minecraftia-Regular.ttf") format("truetype");
  
  }

h1 {
	font-size: 72px;
}

h2 {
	font-size: 34px;
	font-weight: bold;
  padding: 5px 0 5px 0;
}

a:link {
	text-decoration: underline;
  color: #7d76ca;
}

a:hover {
color: #5f78ff;
text-decoration: underline;
}

a:visited {
  color: #6c61e4;
}

.nav {
  z-index: 99;
  position: fixed;
  height: 20px;
  width: 100%;
  top: 0;
  left: 0;
}
	
#floats {

display: inline;
text-align: left;
	  
}
 
#floats img {
 
 max-width: 200px; 
  
}

#mobile {
  
  display: none;
  
}

@media only screen and (max-width: 500px) {
 body {
background-color: #8c8dc6;
  }
.main { 
   text-shadow: #524949 2px 1px 1px;
   font-size: 22px;
width: 80%;
margin-left: -45%;
 }
 a {
  padding: 1px;
  background-color: #faf8ff;
  color: #474554 !important;
  font-style: italic;
  text-shadow: none;
 }
 #header_image {
 display: none !important;
}
 #floats {
   display: none;
 }
 #mobile {
   display: inline !important;
 }
h1 {
 font-size: 26px!important;
}
}

/*

#header_image {
  
 padding: none;
 margin: 50px auto -55px auto;
  
}

#header_image img {
  
  max-width: 600px;
  width:auto;
  height: auto;
  
}

#screenspace {
  
  margin-left: 220px;
width: calc(100% - 220px);
position: absolute;
top: 0px;
left: 0;
    
  }*/