* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

/* ======= Mobile Styles+ ===== */

body {
    background-color: azure;
    color: #345;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.container {
    margin: 4px 8px;
}

.header-prime {
    background-color: lightgray;
    min-height: 80px;
    color: darkred;
    text-align: center;

}

.page-core {
    display: flex;
    flex-flow: row wrap;
}

.nav-prime {
    background-color: lightcoral;
    min-height: 60px;
    flex-grow: 1;
    flex-basis: 260px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 10px;
    padding: 10px 8px;
}

.nav-prime a {
    
    padding: 8px 12px;
    background-color: lightsalmon;
    color: #345;
    text-decoration: none;
}

.nav-prime .desktop {
    border: 2px solid black;
    display: none;
}

.nav-prime .phone {
    border: 2px solid;
    display: block;
}

article {
    background-color: whitesmoke;
    flex-basis: auto;
    flex-grow: 1;
}

article > header {
    background-color: aquamarine;
    min-height: 60px;
    margin: 8px;
}

header + figure.img-hero {
    background-color: lightyellow;
    min-height: 200px;
    margin: 8px;
    background-image: url(../images/astronaut-space-digital-art-fantasy-vv-2560x1440.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: lightslategray;
    color: azure;
    min-height: 60px;
}

/*======== Mobile Landscape+ =======*/
@media screen and (min-width: 1020px) {

    .header-prime {
        text-align: left;
    }

    .nav-prime {
        flex-grow: 0; 
    }

    article {
        flex-basis: 340px;
    }

    article > header {
    margin: 0;
    
}

header + figure.img-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: block;
    color: darkblue;
    font-size: 3em;
    float: left;
    padding-right: 8px;
}

.nav-prime .desktop {
    display: inline;
}


} /* End of Landscape+ */