body {
    margin: 0px
    padding: 0px;
    font: bold 10px Helvetica, Arial, sans-serif;
    color: white;
    text-align: center;
    background: black url(images/background.jpg) center;
    background-size: cover;
}

img {
    max-width: 100%;
}

h1 {
    margin: 0px;
    padding: 0px;
}
h2 {
    margin: 0px;
    padding: 0px;
}
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: white;
    text-align: center;
}

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

a {
    color: white;
    opacity: 0.7;
    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: 30px 0px;
}

.album {
    text-align: center;
    padding-bottom: 30px;
    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%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.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: #000000;
    color: white;
    display: inline-block;
    border-radius: 5px;
    padding: 3px 5px;
    padding-top: 5px;
    line-height: 25px;
    font-size: 15px;
    margin: 5px;
    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);
}



.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: 0px;
    }
    
    .packshot {
        position: static;
    }
    
    .album_sidebar {
        width: 100%;
        margin-left: 0px;
    }
    
}