* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

/*======================= MOBILE/PORTRAIT TABLETS STYLES AND BIGGER =======================*/

body {
    background-color: beige;
    color: #345 ;
    font-family: Verdana;
}

.container {
    margin: 4px 8px;
}

.header-primary {
    background-color:grey;
    color: rgb(240, 240, 240);
    min-height: 80px;
    text-align: center;
}

.page-body {
        display: flex;
        flex-flow: row wrap;
}

.nav-primary {
    background-color:whitesmoke;
    min-height: 70px;
    flex-grow: 1;
    flex-basis: 260px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 10px;
    padding: 10px 8px;
}

.nav-primary a {
    padding: 8px 12px;
    background-color: rgb(255, 195, 40);
    color: #234;
    text-decoration: none;
}

.nav-primary .desktop {
    border: 2px solid #234;
    display: none;
}

.nav-primary .phone {
    border: 4px solid #234;
    display: inline;
}

.header-secondary {
    background-color: beige;
    min-height: 60px;
    margin: 8px;
}

.art-hero {
    background-color: gray;
    min-height: 200px;
    margin: 8px;
    background-image: url(../images/mountain.jpg);
    background-size: cover;
    background-position: center;
}

article {
    background-color: beige;
    flex-grow: 1;
    flex-basis: auto;
}

article p {
    font-size: 1.2em;
    line-height: 1.4;
    margin: .2em 8px 1em 8px;
}

article > p:nth-of-type(1)::first-letter {
        display: inline;
        float: left;
        color: black;
        font-size: 230%;
        line-height: 1;
}

article footer {
    background-color: beige;
    color: black;
    min-height: 60px;
}

/*======================= LANDSCAPE TABLETS AND BIGGER =======================*/
@media screen and (min-width: 1020px) {
 
    .nav-primary {
        flex-grow: 0;
    }   

    article {
        flex-basis: 400px;
        flex: 1;
    }

    .header-primary {
    text-align: left;
    }

    .header-secondary {
    margin: 0px;
    }

    .art-hero {
        margin: 16px;
        width: 260px; aspect-ratio: 1;
        float: left;
    }

    article > p:nth-of-type(1) {
        margin-top: 16px;
    }

    article > p:nth-of-type(1)::first-letter {
        display: inline;
        float: left;
        color: black;
        font-size: 230%;
        line-height: 1;
    }

    article footer {
        text-align: center;
        padding: 15px 0;
        bottom: 0px;
        position: absolute;
    }

    .nav-primary .desktop {
    display: inline;
    }


} /* END OF WIDESCREEN STYLES */