body {
    margin:0;
    padding:4em 1em;
    font-family: sans-serif;
    color:#fff;
    background: #432;
    cursor:default;
}

::-webkit-selection { background:#fc0; color:#333; }
::-moz-selection { background:#fc0; color:#333; }
::selection { background:#fc0; color:#333; }

#contentGrid {
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a, a:before, a:after { top:0; position:relative; -webkit-tap-highlight-color: rgba(0,0,0,0); color:#fc0;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear; }

h1, h2 { margin:0; padding:0; font-weight:400; font-family: sans-serif; }
  h1 { font-size:1.5em; line-height:1; }
    h1 a { color:#fff; }
      h1 a:hover { text-shadow: 0 1px 0 #333, 0 2px 0 #333, 0 3px 0 #333, 0 4px 0 #333, 0 5px 0 #333; top:-5px; }
      h1 a:active { text-shadow: 0 1px 0 #333, 0 2px 0 #333, 0 3px 0 #333; top:-3px; }
  h2 { font-size:1.75em; line-height:1em; }
    h2 a { text-decoration:none; text-shadow: 0 1px #321, 0 2px #321; }
		h2 span{
		    font-size: 0.57em;
		    display: block;
		    color:#ba9;
		}
		
p { margin:0; padding:0; }
ul { margin: 0 1em; padding: 1em; }

article {
    margin: 0;
    padding: 1em;
    line-height: 1.3em;
}

article + article {
    margin-top: 1em;
}

header, footer, #me, .light {
    background: #ffc119;
    background: -moz-linear-gradient(left, #ffc119 0%, #ff7b0d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffc119), color-stop(100%,#ff7b0d));
    background: -webkit-linear-gradient(left, #ffc119 0%,#ff7b0d 100%);
    background: -o-linear-gradient(left, #ffc119 0%,#ff7b0d 100%);
    background: -ms-linear-gradient(left, #ffc119 0%,#ff7b0d 100%);
    background: linear-gradient(to right, #ffc119 0%,#ff7b0d 100%);
    color:#210;
    overflow: hidden;
}

#me img {
    display: block;
    float: right;
    width: 40%;
    max-width: 10em;
    margin: 0 0 1em 1em;
}

#me a, .light a {
    color: #321;
}

header, footer {
    position:fixed;
    height:3em;
    left:0;
    right: 0;
    padding:.75em .5em;
    line-height: 1.5em;
    text-align:center;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #321;
}
header { top: 0; }
footer { bottom: 0; }
footer span { display: none; }
header a,footer a{ color:#fff; text-decoration:none; text-shadow: 0 1px #321; }
        
.dark { background:#654; color:#edc; }
.dark li { color: #ba9; }

@media only screen and (min-width: 30em) {
    #contentGrid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
        grid-gap: 1em;
    }
    
    #me {
        grid-column: span 2;
    }
    
    footer span { display: inline; }

    article + article {
        margin-top: 0;
    }
}