@media only screen and (min-width: 64em) {
    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: flex;
        flex-flow: row;
        justify-content: space-between;
    }
    .column picture img {
        width: 100px;
        flex: auto;
    }
    .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;
    }
    article picture img {
        width: 25%;
        height: auto;
        float: right;
        padding: 1em;
        margin-top: -.8rem;
    }
    .bottomimage img {
        display: inline-flex;
        float: left;
    }
    .contact {
        text-align: center;
    }
    .mappicture img {
        width: 25%;
        float: right;
    }

    .gallerycontainer {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: .6em;
    }

    figure:hover {box-shadow: 5px 5px 10px gray;}
}