/*
________________________________________________________________________________________
*    gallery.css
*   
*    Style sheet for gallery page
________________________________________________________________________________________
*/

/* total page width: 1 + 15 + 958 + 15 + 1 = 990 */
main {
    padding-left: 15px;
    padding-right: 15px;
}

main h1 {
    text-align: center;
}

main p {
    text-align: center;
}

main a:hover {
    background-color: transparent;
}

main a:link {
    background-color: transparent;
}

main #gallery {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    text-align: center;
}

figure {
    background-color: transparent;
    text-align: center;
    vertical-align: top;
    margin: 0px 12px 0px 12px;
    padding-top: 15px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 15px;
    list-style-type: none;
    display: inline-block;
}

figure img {
    height: 200px;
    margin-bottom: 4px;
}

figcaption {
    margin-top: 0px;
    font-size: 0.9em;
    font-weight: bold;
}
