/*------------------------------------*\
    RESET
\*------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0b1 | 201101 
    NOTE:WORK IN PROGRESS
    USE WITH CAUTION AND TEST WITH ABANDON */

html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary,
time,mark,audio,video{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    font:inherit;
    vertical-align:baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section{
    display:block;
}
body{
    line-height:1;
}
ol,ul{
    list-style:none;
}
blockquote,q{
    quotes:none;
}
blockquote:before,blockquote:after,
q:before,q:after{
    content:â€™â€™;
    content:none;
}
/* remember to define visible focus styles! 
:focus{
    outline:?????;
} */

/* remember to highlight inserts somehow! */
ins{
    text-decoration:none;
}
del{
    text-decoration:line-through;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}





/*------------------------------------*\
    $MAIN
\*------------------------------------*/
/* GO! */
body {
  background-color: black;
  border: 6px solid #999;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

#rapper {
  margin: 30px auto;
  max-width: 960px;
  padding: 0 15px;
  width: 100%;
}

img {
  max-width: 100%;
}

i {
  font-style: italic;
}

h1 {
  background: transparent url(../images/snakes.png) 0% top no-repeat;
  background-size: 100px auto;
  font-size: 26px;
  height: 95px;
  margin: 25px 0 0 0;
  text-indent: -9999px;
}

h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

header {
  text-align: center;
}

nav ul {
  display: inline-block;
  margin: 0 auto;
}

nav ul li {
  display: block;
  float: left;
  margin: 0 8px 8px 0;
}

nav ul li a {
  background: #7e7e7e;
  color: #fff;
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  /* text-shadow: 1px 1px 1px #999; */
  transition: 300ms;
  -moz-transition: 300ms;
  -webkit-transition: 300ms;
}

nav ul li a:hover {
  background: #e6a8a8;
  text-shadow: 1px 1px 1px #666;
}

section {
  padding-top: 40px;
}

section p {
  line-height: 1.4;
  margin-bottom: 15px;
}

section p:last-child {
  margin-bottom: 0;
}

table {
  width: 100%;
}

table th {
  font-weight: bold;
  text-align: left;
}

table td, table th {
  padding: 8px 3px;
}

table tr:nth-child(odd) {
  background: #7e7e7e;
}

@media only screen and (max-width: 767px) {
  body {
    border: 0;
    border-top: 6px solid #999;
    font-size: 12px;
  }
  
  h1 {
    background: transparent url(../images/snakes.png) 0% top no-repeat;
    background-size: 70px auto;
    height: 50px;
    margin: 0px 0;
    text-indent: -9999px;
  }
  
  h2 {
    text-align: left;
  }

  #rapper {
    padding: 0 6px;
  }
  
  section#discography {
    padding-top: 20px;
  }
  
  table td, table th {
    font-size: 10px;
    vertical-align: middle;
    padding: 7px 2px 8px 3px;
  }
}