
/* BIG DESKTOP VIEW */

@media only screen and (min-width: 67em){
    header{
        border-bottom: none;
        display: grid;
        grid-template-columns: 1fr 4fr;
        background-color: #353535;
        
    }

    .navigation{
        text-align: right;
        margin-right: 1.2em;
    }

    header img{
        height: 65px;
        width: auto;
        margin-left: 1em;
    }

    header .black-logo{
        display: none;
    }

    header .white-logo{
        display: inherit;
    }


    header li{
        display: inline !important;
    }

    header li:first-child{
        display: none !important;
    }

    header nav a{
        display: inline-block;
        border-top: none;
        font-size: .8em;
        font-weight: 400;
        padding: 25px 20px;
    }

    nav a:hover{
        background-color:white !important;
        letter-spacing: 3pt !important;
        color: black !important;
        }

  
    
 
 }
 /* HOME PAGE */
 @media only screen and (min-width: 1250px){

    .town-data{
        grid-template-columns: 1fr 1fr 1fr;
    }
 }


 /* GALLERY PAGE */

 @media only screen and (min-width: 900px){

    #gallery-container{
        grid-template-columns: 1fr 1fr 1fr;
    }

    #gallery-container img{
        -webkit-transition: 0.4s;
        filter: saturate(50%) brightness(0.95);
        
    }

    #gallery-container img:hover{
        box-shadow: 0 0 20px #000000b6;
        -webkit-transition: 0.4s;
        filter: saturate(120%) brightness(1.05);
    }
}

@media only screen and (min-width: 1000px){

    #gallery-container{
        grid-template-columns: 1fr 1fr 1fr;
    }

}
