/* Import font Libre Baskerville */
@import url(http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic);

body {
    /* basic text properties */
    text-align: center;
    font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
    font-size: 1.15em;
}

/* width and flow of content */
main, header {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

#gamepage {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    
    padding-top: 24pt;
}

#coverart {
    padding-right: 20px;
}

#coverart img {
    width: 380px;
}

#gameinfo {
    width: 580px;
    padding-left: 20px;
    margin: auto;
}

@media screen and (max-width: 1000px) {
    #gamepage {
        flex-direction: column;
        max-width: 800px;
    }
    
    h2.gametitle {
        display: none;
    }
    
    #coverart {
        padding-right: 0;
    }
    
    #gameinfo {
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (max-width: 380px) {
    #coverart img {
        width: 100%;
    }
}

/* other text properties */

p, ul, ol, li {
    line-height: 1.4em;
}

q {
    display: inline;
    font-style: italic;
}


/* headings */

h1, h2 {
    color: #0B6121;
}

h1 {
    padding-top: 60pt;
    font-size: 2.5em;
}

h2 {
    padding-top: 24pt;
    font-size: 1.8em;
}

#gameinfo h2 {
    padding-top: 0;
    margin-top: 0;
}

h3 { /* "Awards:", "Reviewers said:" */
    font-size: 1em;
    font-weight: bold;
}


/* links and lists */

a {
    color: #0B6121;
}

h1 a, #gamelist a {
    text-decoration: none;
}

.playlinks, #gamelist, .awards {
    list-style-type: none;
    padding-left: 0px;
}

#gamelist {
    font-size: 1.2em;
    font-weight: bold;
}

#gamelist li {
    padding-bottom: 1.6em;
}



/* images */

img.smallcover {
    height: 150px;
}


