@media only screen and (min-width: 64em) {
    body {
        max-width: 95%;
        margin-left: 2%;
    }
    nav ul li:first-child {
        display: none;
    }
    header h1 {
        font-size: 3.5rem;
    }
    header h2 {
        font-size: 1.25rem;
    }
    nav ul {
        display: flex;
        flex-flow: row;
    }
    .column {
        display: grid;
        grid-template-rows: 2em 1em 2em;

    }

    .forecast {
        display: block;
    }
    nav button {
        display: none;
    }
    .site-navigation {
        margin-left: 2%;
    }
    .site-navigation li a {
        border: none;
        padding: .2rem 1.2rem;
    }
    .site-navigation li {
        display: inline-flex;
        flex: auto;
        font-size: 1.2rem;
    }
    .weathersummary {
        top: 2rem;
        width: 250px;
    }
    .weathersummary p {
        font-size: 1em;
    }
    .weathersummary>h3 {
        font-size: 1rem;
    }

    .homeArticle picture img {
        width: 50%;
        margin-top: 1rem;
    }
    article picture img {
        width: 20%;
        height: auto;
        float: right;
        padding: 1em;
        margin-top: -4rem;
    }
    .bottomimage img {
        display: inherit;
    }
    figure:hover {
        box-shadow: 5px 5px 10px gray;
    }
    form label.sbs {
        padding: .4rem 0;
    }
    .townContainer {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 2em;
        max-width: 90%;
    }
    .gallerycontainer {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: .6em;
    }
    .prestonInfo .motto {
        padding-bottom: 1.5rem;
    }


    
}