@charset "utf-8";
/* CSS Document */

body{height:100%;
   width:100%;
   background-color: #000000;
   background-image:url(images/obsessed-background.jpg);/*your background image*/  
   background-repeat:no-repeat;/*we want to have one single image not a repeated one*/  
   background-size:cover;/*this sets the image to fullscreen covering the whole screen*/  
   /*css hack for ie*/     
   filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.image.jpg',sizingMethod='scale');
   -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.jpg',sizingMethod='scale')";
	font-family: Arial, Helvetica, sans-serif;
	color: #f313ff;
	font-size: 13px;
	z-index: -1
}
.header div {
	font-family: Arial, Helvetica, sans-serif;
	color: #f313ff;
	font-size: 13px;
	z-index: 1;
	
}
div#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
	
}
a:link {
	text-decoration: none;
	color: #f313ff;
}
a:visited {
	text-decoration: none;
	color: #f313ff;
}
a:hover {
	text-decoration: none;
	color: #f313ff;
	
}
a:active {
	text-decoration: none;
	color: #f313ff;
}
.darken-overlay div {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  
}