* {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    min-height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
}
footer h5 {
    text-align: center;
}
/*
#content-desktop {
    display: block;
}
#content-mobile {
    display: none;
}
*/



/*
@media screen and (max-width: 768px){
    #content-desktop {
        display: none;
    }
    #content-mobile {
        display: block;
    }
*/
    header {
        width: 80%;
        margin: 0 auto;
    }
    .topBox {
        text-align: center;
    }
    .topBox {
        height: auto;
        background-color: lightgreen;
        border-style: groove;
        border-width: 20px;
        border-color: yellow;
        margin: 20px 20px 50px 20px;
        padding: 20px
    }
    nav p {
        text-align: center; 
        margin-bottom: 30px;
    }
/*    CSS for nav buttons */
    .styled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgba(220, 0, 0, 1);
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

.styled:hover {
    background-color: rgba(255, 0, 0, 1);
}

.styled:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
}
/*end nav buttons CSS */
    .navButtons {
        display: grid;
        grid-gap: 10px;
        width: 150px;
        margin: 0 auto;
        padding-bottom: 50px
}
    .bannerPhoto {
        width: 90%;
        margin: 0 auto;
    }
    .bannerPhoto img {
        width: 100%;
        box-shadow: 0 10px 30px rgba(104,104,104,0.8);
    }
    .bannerPhoto figcaption {
        text-align: center;
        margin-bottom: 30px;
    }

/*}*/

