@charset "UTF-8";
@media all and (min-width: 960px) {
    h1{
        font-size: 84px;
    }
}
 
@media all and (max-width: 940px) and (min-width: 600px) {
   h1{
        font-size: 84px;
    }
	
	 #bg {
  position: fixed; 
  top: 0; 
  left: 0; 
	
  /* Preserve aspet ratio */
  min-width: 650px;
  min-height: 100%;
  height: 100%;
  width: auto;
}
}
 
@media all and (max-width: 599px) and (min-width: 320px) {
    h1{
        font-size: 50px;
    }
	h2{
        font-size: 50px;
    }
	#name a {
        font-size: 12px;
    }
 
 #bg {
  position: fixed; 
  top: 0; 
  left: 0; 
	
  /* Preserve aspet ratio */
  min-width: 320px;
  min-height: 100%;
  height: 100%;
  width: auto;
}
 
}