body{
    width:100%;
    height: 100%;
    margin: 0;
    }
        
.container{
    background-image: url("flower\ and\ bee\ pic.jpeg");
    width:100%;
    height:100vh;
    background-position: center;
    background-repeat: none;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 2fr 10fr 1fr;
    grid-template-areas: 
        "header header header"
        "main main main"
        "footer footer footer" ;
    grid-gap: 0.2em;
    }
        
.background_shading{
    background-color: black;
    height: 100%;
    width: 100%;
    opacity: .2;
    top:0%;
    position: absolute;
    }
           
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;
    top: 30%;
    width: 100%;
    height: 60%;
    }
 
.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:130;
    }

    .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;
        z-index: 50;
        position:relative;
        }
    
    .headshot img {
            width: 100%;;
            text-align: center;
            margin: auto;
            left:0px;
            position:relative;
        }

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

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

    .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);
          }

    }
        
                