#title {
    color: #CC9966;
    font-size: 1.5em;
    margin: 1em auto;
}

#beer-details {
    background-color: white;
    margin: 1em;
    padding: 1em;
    border-radius: 5px;
    text-align: center;
}

body {
    background-image: url('/img/bg.png');
    background-size: cover;
    background-position: center;
}

#beer-details h2 {
    color: #333;
    font-size: 1.2em;
}

#beer-details H3 {
    color: #333;
    font-size: 1em;
    font-weight: bolder;
}

#beer-details p, #beer-details ul {
    color: #666;
    font-size: 1em;

}

#beer-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

#beer-details li {
    display: block;
    margin: 0;
    padding: 0;
}

#beer-details div#pictures {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        text-align: center;
    }
    #beer-details {
        width: 80%;
        margin: auto;
    }
    #beer-details div#pictures {
        float: right;
        margin-right: 0.5em;
        max-height: 100%;
        width: 33%;
    }
    div#details {
        width: 60%;
        text-align: center;
    }
}