@media only screen and (min-width: 64em) {
    nav button { display: none; }

    #remove {
        display: none;
    }
    
    /* Navigation Menu */
    nav {
        display: grid;
        height: 2em;
        align-items: center;
        justify-items: end;
        background: #7abcff; 
    background: -moz-linear-gradient(top, #7abcff 0%, #60abf8 44%, #4096ee 100%); 
    background: -webkit-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); 
    background: linear-gradient(to bottom, #7abcff 0%,#60abf8 44%,#4096ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); 
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #FFF;
    }

    nav ul {
        display: grid;
        grid-template-columns:  repeat(6, 1fr);
        
        justify-content: space-around;
        list-style-type: none;   
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        text-decoration: none;
        color: #FFF;
        padding: 1em 2em;
    }
    nav ul li.active a {
        margin: 0;
        padding: 0.4em 1em;
        background-color: rgba(24,63,88,0.2);
        color: #eee;
    }
    
    nav li a:hover {
        margin: 0;
        padding: 0.4em 1em;
        background-color: rgba(24,63,88,0.4);
        color: #eee
    } 

    #map iframe {
        width: 400px;
        height: 300px;
    }
    #backgroundImage {
        width: 100%;
        background-repeat: no-repeat;
        }

}




