* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

/* --------- phone/portrait tablets and bigger --------- */


body {
    background-color: #DFD;
    color: #345;
    font-family: verdana;
}

.container {
    margin: 4px 8px;
}

.container > header {
    background-color: rgb(20, 20, 200);
    color: rgb(240, 240, 240);
    min-height: 80px;
    text-align: center;
}

.page_body {
    display: flex;
    flex-flow: row wrap;
}

.nav_primary {
    background-color: rgb(255, 102, 0);
    min-height: 60px;
    flex-basis: 260px;
    flex-grow: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 10px;
    padding: 10px 8px;
}

.nav_primary a {
    padding: 8px 12px;
    background-color: rgb(228, 132, 69);
    color: black;
    text-decoration: none;
}

.nav_primary .desktop {
    border: 2px solid black;
    display: none;
}

.nav_primary .phone {
    border: 4px solid black;
    display: inline;
}

article {
    background-color: rgba(255, 255, 255, .7);
    flex-basis: 34px;
    flex-grow: 1;
}

article > header {
    background-color: rgb(20, 200, 20);
    min-height: 60px;
    margin: 8px;
}

header + figure.hero {
    background-color: rgb( 200, 200, 20);
    aspect-ratio: 2/1;
    min-height: 200px;
    margin: 8px;
    background-image: url(../images/pink_sunset.jpg);
    background-size: cover;
    background-position: center;
}

article p {
    font-size: 1.2em;
    line-height: 1.4;
    margin: .2em 8px 1em 8px;

}

article footer {
    background-color: rgb(100, 100, 100);
    color: #EEE;
    min-height: 60px;
}

/* ------- landscape tablet and bigger ------- */
@media screen and (min-width: 1020px) {

    .nav_primary {
        flex-grow: 0;
    }

    .container > header {
        text-align: left;
    }


    article > header {
        margin: 0;
    }

    header + figure.hero {
        margin: 16px;
        width: 260px;
        aspect-ratio: 1;
        float: left;
    }

    article > p:nth-of-type(1) {
        color: red;
        margin-top: 16px;
    }

    article > p:nth-of-type(1)::first-letter {
        display: block;
        color: darkred;
        font-size: 3em;
        float: left;
        padding-right: 8px;
    }

    .nav_primary .desktop {
        display: inline;
    }

}