* {
    margin: 0; padding: 0; box-sizing: border-box;
}
body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header .promo_bar {
    background-color: darkorange;
    min-height: 56px;
}
header nav {
    min-height: 77px;
}
section.hero {
    min-height: 500px;
    background-color: yellow;
    background-image: url(../images/dogcamping2.jpg);
    background-size: 100%;
    background-position: center;
    position: relative;
    background-position: left;
}
.hero_text1 {
    color: black;
    font-family: impact;
    font-size: 1.5em;
    background-color: yellow;
    position: absolute;
    top: 20px; left: 100px;
    text-align: left;
}
.hero_text2 {
    color: black;
    font-family: impact;
    font-size: 1.5em;
    background-color: yellow;
    position: absolute;
    bottom: 20px; right: 100px;
    text-align: right;
}
.call-to-action {
    display: block;
    background-color: red;
    width: 140px;
    padding: 14px 14px;
    position: absolute;
    bottom: 40px; left: 100px;
    text-decoration: none;
    color: yellow;
    font-size: 16pt;
    border-radius: 8px;
    box-shadow: 0 0 8px;
    transition: 400ms linear;
}
.call-to-action:hover {
    background-color: darkred;
    box-shadow: 0 0 20px;
}
section.products {
    min-height: 300px;
    background-color: aqua;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    gap: 5px;
    padding: 20px 100px; /* top right bottom left */
}
.product_card {
    padding: 4px;
    flex: 0 0 20%;
    background-color: white;
    border-radius: 6px;
    transition: .50ms linear;
    box-shadow: 0 0 20px darkgoldenrod;
    text-align: center;
    text-decoration: none;
    color: hotpink;
}
.product_card h2 {
    font-size: 12pt;
    margin-top: 20px;
    margin-bottom: 20px;
}
.product_card:hover {
    box-shadow: 0 0 20px black;
}
.product_card img {
    width: 80%;
}
.product_card p {
    font-size: 8pt;
}
.featured_story {
    margin: 40px 100px;
    min-height: 400px;
    background-color: lightgreen;
    display: flex;
    text-decoration: none;
    border-radius: 6px 0 0 6px;
}
.featured_story figcaption {
    background-color: yellow;
    flex: 0 0 30%;
}
.featured_story figure {
    flex: 0 0 70%;
    background-image: url(../images/dogcamping3.jpg);
    background-size: 180%;
    background-position: right;
    border-radius: 0 6px 6px 0;
}
.featured_story figcaption p:first-child {
    color: red;
    text-align: center;
    text-transform: uppercase;
    font-size: 8pt;
    margin: 8px;
    font-weight: bold;
}
.featured_story figcaption h2 {
    margin: 16px;
    font-weight: 1.4;
}
.featured_story figcaption p {
    margin: 16px;
    font-weight: 1.4;
}
footer {
    min-height: 300px;
    background-color: lightblue;
    color: darkred;
}
header div.inner-container,
nav.inner-container, footer .inner-container {
    margin: 0 100px;
    padding-top: 10px;
}