
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
 }

 
 body {
    line-height: 1;
    max-width: 960px;
    background: white;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif; 
 }
 
 ol, ul {
    list-style: none;
 }

 header {
    background: #FFE373;
    width: 100%;
    color: black;
    font-size: 48px;
    text-align: center;
    line-height: 1.5em;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
 }


 
 article h2 {
    font-weight: bold;
    font-size: 24px;
    padding: 10px;
 }
 

 
 div#gallery {
    display: flex;
    flex-flow: row wrap;
 }
 
 div#gallery figure {
    flex: 1 1 150px;
    margin: 5px;
    border: 1px solid black;
    background-color:hsl(129,23%,58%);
 }
 
 div#gallery figure img {
    display: block;
    width: 100%;
 }
 
 div#gallery figure figcaption {
    display: block;
    text-align: center;
    font-size: 0.85em;
    padding: 3px;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
 }