/* Reset Rule */ 
*{
    margin: 0; padding: 0; box-sizing: border-box;
}

body{
    background-color: #EEE;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header .promo_bar{
    background-color: hsl(37 82% 55%);
    min-height: 56px;
}

header nav{
    min-height: 77px;
}

section.hero{
    min-height: 450px;
    background-color: skyblue;
    background-image: url(../images/man-and-dog.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.hero_text{
    color: #FFF;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2.7em;
    padding: 10px 0px 0px 100px;
    float: left;
    letter-spacing: .1em;
    position: absolute;
}

.call-to-action{
    display: block; /*Convert to block element*/
    background-color: hsl(37 82% 55%);
    width: 180px; 
    padding: 16px 8px 16px 8px;
    position: absolute; bottom: 50px; left: 100px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #00263e;
    border-radius: 8px;
    box-shadow: 2px 3px 6px rgba(10,10,10,.7);
    transition: background-color 250ms linear;
}

.call-to-action:hover{
    background-color: hsl(37 82% 40%);
}

section.products{
    min-height: 300px;
    display: flex; /* Make this a flex box parent */
    justify-content: space-between;
    flex-flow: row wrap;
    padding: 20px 100px;
    gap: 5px;
}

.product_card{
    flex: 0 0 20%;
    background-color: #EEE;
    padding: 4px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 20px #888;
    transition: box-shadow .25s linear;
    text-decoration: none;
    color: #234;
}

.product_card:hover{
    box-shadow: 0 0 20px #555;
}

.product_card h2{
    font-size: 10pt;
    margin-top: 30px;
    margin-bottom: 10px;
}

.product_card img{
    width: 80%;
}

.product_card p{
    font-size: 8.5pt;
}

.featured-story{
    margin: 40px 100px;
    background-color: #EEE;
    display: flex; /* Becomes a flex parent */
    text-decoration: none;
    min-height: 400px;
}

.featured-story figcaption{
    background-color: #FFF;
    flex: 0 0 30%;
    border-radius: 6px 0 0 6px;
}

.featured-story figure{
    display: inline-block;
    background-color: rebeccapurple;
    flex: 0 0 70%;
    background-image: url(../images/dog-rocks.jpg);
    background-size: cover;
    border-radius: 0 6px 6px 0;
}

.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;
    color: #234;
}


.featured-story figcaption p{
    margin: 16px;
    font-size: 8pt;
    line-height: 1.4;
    color: #234;
}


footer{
    min-height: 300px;
    background-color: #444;
    color: #EEE;
}

header div.inner-container{
    margin: 0 100px;
}

nav.inner-container{
    margin: 0 100px;
}

footer div.inner-container{
    margin: 0 100px;
    padding-top: 10px;
}