/* normalised but retains base browser styles using normalize.css  */
/* adding some extra for this site */

ul { margin: 0; padding: 0; list-style: none; }
ul li {	padding: 0 1em; line-height: 2.0em;}
footer ul li { display: inline;}

/* homepage */

body { 
    font-size: 0.875em; /* 16x0.875=14px */ 
    line-height:1em; /* 16x1=16px */
    font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
    background-color: #000;
    margin: 0;
    height: 100%;
    display: flex;
}

a {
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
a:link    {text-decoration: none; color: rgba(153, 102, 0, 1);}
a:visited {text-decoration: none; color: rgba(153, 102, 0, 1);}
a:hover   {text-decoration: none; color: rgba(255, 204, 102, 1);}
a:active  {text-decoration: none; color: rgba(255, 204, 102, 1);}
a:focus   {text-decoration: underline; color: rgba(255, 204, 102, 1);}

footer a {
	/*text-shadow: 0 1px rgba(255, 255, 255, 0.7);*/
}

#wrapper {
	width: 800px;
	margin: 0 auto;
	background-color:#000;
	text-align: center;
	height: 100%;
	padding-top: 120px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

h1 {
	position: absolute;
	left: -1000px;
}

ul.maindisk {
	background: url("../img/disk.jpg") no-repeat scroll 0 0 transparent;
	height: 240px;
	width: 364px;
	margin: 0 auto 8px;
	padding: 76px 0 0;
	text-align: left;
}
ul.maindisk li {
	display: block;
	padding-left: 190px;
}
ul.maindisk li a {
	line-height: 2em;
	font-size: 1.6em;
	text-decoration: none;
	color: #554400;
	text-shadow: 1px 1px 0 hsla(0,0%,100%,.7);
}
ul.maindisk li a:hover {
	color: #320;
}

footer {
	align-self: flex-end;
}
footer li a {
	background-color: #000;
	display: inline-block;
	line-height: 1.6em;	
	padding-bottom: 8px;
}
footer li {
	display: inline-block;
	padding: 28px 8px 0;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}

/* amazing icons from http://paulrobertlloyd.com/2009/06/social_media_icons - thanks */
footer li.flickr {background: url(../img/icons/flickr-24x24.png) no-repeat 12px 26px;}
footer li.flickr:hover {background: url(../img/icons/flickr-24x24.png) no-repeat 12px 0;}
footer li.lastfm {background: url(../img/icons/lastfm-24x24.png) no-repeat 16px 26px;}
footer li.lastfm:hover {background: url(../img/icons/lastfm-24x24.png) no-repeat 16px 0;}
footer li.facebook {background: url(../img/icons/facebook-24x24.png) no-repeat 22px 26px;}
footer li.facebook:hover {background: url(../img/icons/facebook-24x24.png) no-repeat 22px 0;}
footer li.twitter {background: url(../img/icons/twitter-24x24.png) no-repeat 16px 26px;}
footer li.twitter:hover {background: url(../img/icons/twitter-24x24.png) no-repeat 16px 0;}
footer li.youtube {background: url(../img/icons/youtube-24x24.png) no-repeat 20px 26px;}
footer li.youtube:hover {background: url(../img/icons/youtube-24x24.png) no-repeat 20px 0;}
footer li.lanyrd {background: url(../img/icons/lanyrd-24x24.png) no-repeat 14px 26px;}
footer li.lanyrd:hover {background: url(../img/icons/lanyrd-24x24.png) no-repeat 14px 0;}
footer li.linkedin {background: url(../img/icons/linkedin-24x24.png) no-repeat 17px 26px;}
footer li.linkedin:hover {background: url(../img/icons/linkedin-24x24.png) no-repeat 17px 0;}
footer li.quora {background: url(../img/icons/identica-24x24.png) no-repeat 14px 26px;}
footer li.quora:hover {background: url(../img/icons/identica-24x24.png) no-repeat 14px 0;}
footer li.foursquare {background: url(../img/icons/foursquare-24x24.png) no-repeat 26px 26px;}
footer li.foursquare:hover {background: url(../img/icons/foursquare-24x24.png) no-repeat 26px 0;}
footer li.blogger {background: url(../img/icons/blogger-24x24.png) no-repeat 16px 26px;}
footer li.blogger:hover {background: url(../img/icons/blogger-24x24.png) no-repeat 16px 0;}

/* bonus image for wide devices or windows */
@media only screen and (min-width: 1260px) {
    body { 
        background-image: url(../img/dexter-full.jpg);
        background-attachment: fixed;
        background-color: #D2B198;
        background-position: left top;
        background-repeat: no-repeat;
    } 
    #wrapper {
    	-moz-box-shadow: -2px 0 8px #333333;
    	-webkit-box-shadow: -2px 0 8px #333333;
    	box-shadow: -2px 0 8px #333333;
    }
    .home #wrapper {
    	xmin-height: 730px;
    }
}

/* bonus image for wide devices or windows */
@media only screen and (max-width: 800px) {

	#wrapper {
	    position: absolute;
	    width: auto;
	    padding-top: 80px;
	}

}


