/*** MASTER *******************************************************************/
body {
    color: #fff;
    background: #000 url('img/phoenix-bg.jpg') top;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1, h2 {
    margin-top: 10px;
    padding: 0 10px;
    font-family: 'Germania One', cursive;
}

#main-nav {
    background: rgb(0,0,0);
    background: rgba(20,6,0,0.98);
}

#main-nav ul {
    list-style: none;
    display: block;
    padding: 0 10px;
	text-align: center;
}
#main-nav li {
    font-family: 'Germania One', cursive;
    font-size: 12pt;
    display: inline-block;
    padding: 0 10px;
}

a {
    font-family: 'Germania One', cursive;
    color: rgb(255,170,0);
    transition: all .4s ease-out;
    padding: 5px 2px;
    display: inline-block;
    text-decoration: none;
}

a:hover {
    color: #ff6;
    transition: all .3s ease-in;
    text-shadow: 0 0 1px #fff;
}

#main-nav a.current { color: #fff }

#container {
    background: rgb(20,6,0);
    background: rgba(20,6,0,0.85);
    width: 900px;
    min-height: 800px;
    text-align: left;
    margin: 0 auto;
    box-shadow: 0 0 4px rgb(20,6,0);
}

#header {}

#logo {
    display: block;
}

#content {
    clear: both;
    padding: 1px 20px 50px 20px;
}


/*** BOOKS ********************************************************************/
h2 {
    margin-bottom: 0;
    display: inline-block;
}
.book {
    max-width: 600px;
    display: block;
    margin: 10px 20px;
    clear: both;
}
.book a {
    color: rgb(255,170,0);
    outline: none;
    transition: all .4s ease-out;
    display: inline;
}
.book a:hover {
    color: #ffa;
    text-shadow: 0 0 1px #fff;
    transition: all .3s ease-in;
}
img.cover {
    opacity: .75;
    box-shadow: 2px 2px 1px #000;
    transition: all .2s ease-out;
    border-radius: 2px;
    display: inline-block;
    float: left;
    margin: 0 10px 20px 0;
    outline: none;
    border: none;
}
img.cover:hover {
    opacity: 1;
    box-shadow: 2px 2px 1px rgb(255,255,255);
    transition: all .2s ease-in;
}
