 body {
    margin: 0px
    padding: 0px;
    font: bold 10px Helvetica, Arial, sans-serif;
    color: #224667;
    text-align: center;
    
}

#background {
    width: 100%; 
    height: 100%; 
    position: fixed; 
    left: 0px; 
    top: 0px; 
    z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
}

html { 
  background: url(images/background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.stretch {
    width:100%;
    height:100%;
}

img {
    max-width: 100%;
}

h1 {
    margin: 0px;
    padding: 0px;
}
h2 {
    margin: 0px;
    padding: 10px;
    color: #224667;
    font-family: 'Goudy Old Style', Garamond, 'Big Caslon', 'Times New Roman', serif;
    font-weight: bold;
}
h3 {
    margin: 5px;
    padding: 5px;
    font: bold 14px Helvetica, Arial, sans-serif;
}

h4 {
    margin: 0px;
    padding: 0px;
    font: bold 18.4px Helvetica, Arial, sans-serif;
    color: #224667;
    text-align: center;
    font-family: 'Goudy Old Style', Garamond, 'Big Caslon', 'Times New Roman', serif;
}

p {
    margin-bottom: 5px;
    line-height: 20px;
}

a {
    color: #224667;
    opacity: 0.9;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover {
    opacity: 1;
}

#container {
    max-width: 900px;
    padding: 30px;
    margin: auto;
}

#albums {
    margin: 10px 0px;
}

.album {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
    padding-left: 60px;
}

.packshot {
    box-shadow: 0px 4px 15px rgba(0,0,0,0.7), 0px 0px 80px rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    width: 50%;
  
}

.album_sidebar {
    width: 50%;
    margin-left: 50%;
}



.buy_links {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.buy_links a {
    background: #224667;
    color: white;
    display: inline-block;
    border-radius: 5px;
    padding: 5px 10px;
    padding-top: 10px;
    line-height: 25px;
    font-size: 15px;
    margin: 30px;
    text-transform: none;
    opacity: 1;
    -webkit-box-shadow: 0px 3px 0px #ffffff;
    -moz-box-shadow: 0px 3px 0px #ffffff;
    box-shadow: 0px 3px 0px #ffffff;
}

.buy_links a:hover {
    color: #000000;
    background: white;
    -webkit-box-shadow: 0px 0px 0px #00417d;
    -moz-box-shadow: 0px 0px 0px #00417d;
    box-shadow: 0px 0px 0px #00417d;
    -webkit-transform: translate(0px,3px);
    -moz-transform: translate(0px,3px);
    transform: translate(0px,3px);
    
}

a.preorder:link, a.preorder:visited {
    background-color: #244766;
    font-family: 'Goudy Old Style', Garamond, 'Big Caslon', 'Times New Roman', serif;
    color: white;
    padding: 14px 25px;
    text-align: center;	
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}


a.preorder:hover, a.preorder:active {
    background-color: #497093;
}

.info {
    margin-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 9px;
}

.info p{
   font: bold 12px Helvetica, Arial, sans-serif;
}

#footer {
    clear: both;
    font: 12px Helvetica, Arial, sans-serif;
}

@media screen and (max-width: 650px) {
    
    .album {
        padding: 10px;
        
    }
    
    .packshot {
        position: static;
        width: 90%;
        margin-bottom: 5px;
    }
    
    .album_sidebar {
        width: 100%;
        margin-left: 0px;
    }
    
}