body{
    
    margin: 0;
    background-image: url("NiagaraFalls.jpeg");
    background-position: center;
    background-repeat: none;
    background-size: cover;
    }
        
.container2{
    display: grid;
    width:100vw;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 3fr 10fr 1fr;
    grid-template-areas: 
        "header header header"
        "headshot textbox textbox"
        "footer footer footer" ;
    grid-gap: 0.2em;
    }
        
.background_shading{
    background-color: black;
    opacity: .2;
    top:0%;
    position: absolute;
    position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    }
           
header{
    grid-area: header;
    position: absolute; 
    top: 1%; 
    left: 0%;
    width:100%;
    height: 15%;
    font-size: 20px;
    text-align: center;
    color: white;
    z-index: 5;
    opacity: 1;
    font-family: 'Catamaran', sans-serif; 
    }
            
header a{
    text-decoration: none;
    color: white;
    padding: 10px;
    font-family: 'Catamaran', sans-serif;
    }
  
.rocksalt {font-family: 'Rock Salt', cursive;
    font-size: 40px;
    color:white
    }

.link{
    display:inline;
    }

main{
    grid-area: main;
    position: absolute;
    }
 
.tagline {
    padding-top: 85px;
    font-family: 'Bebas Neue', cursive;
    color: white;
    font-size: 50px;
    text-align: center;
    z-index: 5;
    opacity: 1;
    position: relative;
    }

footer{
    grid-area: footer;
    position: absolute;
    top: 90%;
    width: 100%;
    height: 10%;
    text-align: center;
    color: white;
    }

    .menubox{
        grid-area: menubox;
        display:none;
        padding-right:0px;
        padding-top:30px;
        z-index:150;
        position:absolute;
        top:0;
        right:0;
    }

    .menuContainer{
        position: relative;
        float:right;
        height:100%;
        width:100%;
        padding-left:30px;
    }

    .menuContainer div{
        
        height:4px;
        width:35px;
        background-color: white;
        margin: 4px 0;
        display: block;
        }

    #navMenu{
        display: none;
    }
         
    .headshot{
            grid-area: headshot;
            }
    .headshot > img {
        max-width: 100%;
        
    }

    .text{
        grid-area:textbox;
        padding-left: 10px;
        color: white;
        z-index: 5;
        padding-right: 70px;
        font-family: 'Questrial', sans-serif;
    }


@media only screen and (max-width: 680px){
    .link{
        display:none;
        }

    .container{
        display: grid;
        grid-template-columns: 5fr 1fr;
        grid-template-rows: 1fr 5fr 5fr 0.25fr;
        grid-template-areas: 
            "header menubox"
            "headshot headshot"
            "textbox textbox"
            "footer footer" ;
        grid-gap: 0em;
        } 

        .container2{
            
            grid-template-columns: 5fr 1fr;
            grid-template-rows: 0.5fr 2fr 8fr 0.25fr;
            grid-template-areas: 
            "header header"
            "headshot headshot"
            "textbox textbox"
            "footer footer" ;
            grid-gap: 0.2em;
            top:0%;
            left:0;
            position: absolute;
            z-index: 50;
            } 
    .main{
        text-align: center;
        }

    .menubox{
        display: block;
        }

    .rocksalt {font-family: 'Rock Salt', cursive;
        font-size: 30px;
        color:white
        }

        .tagline {
            font-size: 30px;
            }

    .dropdown{
        width:100%;
        height:100%;
        grid-area: dropdown;
        background-color: black;
        opacity: .8;
        z-index: 101;
        display: inline;
    }    

    .dropdown a{
        text-decoration: none;
        color: white;
        padding: 10px;
        font-family: 'Catamaran', sans-serif;
        text-align: center;
        
        }

    .link2{
        position:relative;
        text-align: center;
        width: 100%;
        height:5%;  
        border-bottom: 2px solid white;  
        padding-top:5px
        }

    #navMenu{
        display: grid;
        grid-template-columns: 5fr 1fr;
        grid-template-rows: 1fr 10fr 0.25fr;
        grid-template-areas: 
            "header menubox"
            "dropdown dropdown"
            "dropdown dropdown" ;
        grid-gap: 0.2em;

        position: absolute;
        top:0%;
        position: absolute;
        height:100%;
        width:100%;
        z-index: 100;
        display:none;
        } 


        .bar1, .bar2, .bar3 {
            width: 35px;
            height: 5px;
            background-color: #333;
            margin: 6px 0;
            transition: 0.4s;
          }

          .change .bar1 {
            -webkit-transform: rotate(-45deg) translate(-9px, 6px);
            transform: rotate(-45deg) translate(-9px, 6px);
          }
          
          .change .bar2 {opacity: 0;}
          
          .change .bar3 {
            -webkit-transform: rotate(45deg) translate(-8px, -8px);
            transform: rotate(45deg) translate(-8px, -8px);
          }

          .headshot > img {
            max-width: 100%;
            max-height: auto; 
        }

        .text{
            background-color: black;
            padding-left:50px;
            padding-top:20px;
        }

    }
        
                