/* Style for Wireframe website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5; /*#e7f0f8;*/
    color: #333;
    font-family: 'Merriweather', serif;
}

h1{
    text-align: center;
    color: #2c3e50; /*#20435c;*/
    font-size: 2.5em; 
    margin-bottom: 0.5em;
}

h2 {
    text-align: center;
    color: #2c3e50; /*#3a888c;*/
    font-size: 2em;
    margin-bottom: 0.75em;
}

.image-container {
    width:940px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px; 
    background-color: #dbe9f4; /*#d9e2ec;*/
    padding: 10px 0 20px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    border-radius: 8px;
}

.image-container:last-of-type {
    margin-bottom: 20px;
}   

img {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

footer {
    height: 45px;
    line-height: 45px;
    background: #3a4557;
    border-top: 1px dotted #666;
    clear: both;
    font-size: .95em;
    text-align: center;
}

footer ul {
    list-style-type: none; 
}

footer li {
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
    color: #cad2d3;
}

footer a {
    color: #cad2d3;
}