html {

}
body {
text-align: center;
background:#ccc;
}
p{
    font-weight:500;
    margin: 8px;
}
p.bold {
    font-size:14px;
    font-weight:600;
    margin:20px auto;
}
.gallery {
    max-width: 1000px;
    margin:0 auto;
    text-align: center;
}
.gallery figure  {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
    padding: 5px;
    background: #eee;
    text-decoration: none;
    border-radius: 3px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.gallery figure img {
    display: block;
    max-width: 100%;
    cursor: pointer;
}
figcaption {
    max-width:250px;
    margin: 10px auto 0;
}

