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

body{
    font-family: Verdana;
    background-color: #EEE;
}

header .promo_bar {
    background-color: #eaa22e;
    min-height: 56px;
}

header {
    background-color: white;
}

header nav {
    background-color: white;
    min-height: 77px;
}

section.hero {
    min-height: 800px;
    background-color: skyblue;
    background-image: url(../images/dog3.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.hero_text {
    color: white;
    font-family: Impact;
    font-size: 2.75em;
    padding: 20px;
    background-color: rgba(20, 20, 20, .7);
    position: absolute;
    top: 30px; left: 100px;
    letter-spacing: .1em;
}

.call-to-action {
    display: block;
    background-color: #eaa22e;
    width: 180px;
    padding: 16px 8px;
    position: absolute; bottom: 80px; left: 100px;
    text-decoration: none;
    text-align: center;
    color: #00263e;
    font-size: 16pt;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(10,10,10,.7);
    transition: background-color 250ms linear;
}

.call-to-action:hover {
    background-color: #d89b21;
}

section.products {
    min-height: 300px;
    background-color: #EEE;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    gap: 5px;
    padding: 20px 100px; /* top right bottom left */

}

.product_card {
    flex: 0 0 20%;
    background-color: white;
    padding: 4px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 20px #888;
    transition: box-shadow .50s linear;
    text-decoration: none;
    color: #234;
}

.product_card:hover {
    box-shadow: 0 0 20px #555;
}

.product_card h2 {
    font-size: 10pt;
    margin-top: 40px;
    margin-bottom: 10px;
}

.product_card img {
    width: 80%;
}

.product_card p {
    font-size: 8pt;
}

.featured_story {
    margin: 40px 100px;
    min-height: 400px;
    background-color: white;
    display: flex; /* becomes flex parent*/
    text-decoration: none;
    color: #234;
    border-radius: 6px;
}

.featured_story figcaption {
    background-color: white;
    flex: 0 0 30%;
    border-radius: 6px 0 0 6px;
}

.featured_story figcaption p:first-child {
    color: #234;
    text-align: center;
    text-transform: uppercase;
    font-size: 8pt;
    margin: 8px;
    font-weight: bold;
}

.featured_story figcaption h2 {
    margin: 16px;
    font-size: 14pt;
    line-height: 1.4;
}

.featured_story figcaption p {
    margin: 16px;
    font-size: 10pt;
    line-height: 1.6;
}


.featured_story figure {
    flex: 0 0 70%;
    background-image: url(../images/dog1.jpg);
    background-size: cover;
    border-radius: 0 6px 6px 0  ;
}

footer {
    min-height: 300px;
    background-color: gray;
    color: white;
}

header div.inner-container,
nav.inner-container,
footer div.inner-container
{
    margin: 0 100px;
    padding-top: 10px;
}
