body{
    
    margin: 0;
    background-image: url("EiffelTowerLow.jpg");
    background-position: center;
    background-repeat: none;
    background-size: cover;
    }
        
.container2{
    display: grid;
    width:100vw;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 10fr 1fr;
    grid-template-areas: 
        "header header header"
        "main main main"
        "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;
    color:white;
    overflow:scroll;
    font-family: 'Questrial', sans-serif;
    }
 
.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;
    }

.vidbox{
    position: relative;
    height: 180px;
    width: 680px;
    float: left;
    padding:10px;
    opacity: 1;
    z-index: 10;
    background-color: black;
}

.vidbox img{
    width:100%;
}

.video{
    position: relative;
    height: 180px;
    width: 315px;
    float: left;
    padding-bottom:10px;
    z-index: 10;
}

.videodiscription{
    position:relative;
    height: 100%; 
    width: 355px;
    float: left;
    top:10px;
    padding-left:10px;
    
}


.video img{
    position:relative;
    width:100%;
    height:100%;
    left:0;
    top:5px;
    background-color: none;
    opacity: 1;
}

.vidbox2{
    position: relative;
    height: 790px;
    width: 680px;
    float: left;
    padding:10px;
    background-color: black;
    z-index: 10;
}

.video2{
    position: relative;
    height: 790px;
    width: 315px;
    float: left;
    padding-bottom:10px;
    z-index: 10;
    
    
}

.video2 img{
    position:relative;
    width:100%;
    height:100%;
    left:0;
    top:5px;
}

.videodiscription2{
    position:relative;
    height: 790px; 
    width: 355px;
    float: left;
    top:10px;
    padding-left:10px;
    z-index: 10;
}

#popup{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: grey;
    z-index: 20;
    opacity: .5;
    display: none;
    
}

#popupimage{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 15%;
    left: 25%;
    z-index: 21;
    display: none;
    color: white;
    text-align: right;
    overflow: scroll;
}

#popupimage img{
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 681px){
    main{
        overflow: scroll;
    }
}

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

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

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

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


        .vidbox{
            position: relative;
            height: auto;
            width: 100%;
            float: left;
            padding-bottom:10px;
        }

        .video{
            position: relative;
            height: 180px;
            width: 315px;
            float: left;
            padding-bottom:10px;
        }

        .videodiscription{
            position:relative;
            height: auto;
            width: 90%;
            float: left;
            top:10px;
            padding-left:10px;
        }


        .vidbox2{
            position: relative;
            height: auto;
            width: 100%;
            float: left;
            padding:10px;
            
        }
        
        .video2{
            position: relative;
            height: 790px;
            width: 315px;
            float: left;
            padding-bottom:10px;
            
        }
        
        .video2 img{
            position:relative;
            width:100%;
            height:100%;
            left:0;
            top:5px;
        }
        
        .videodiscription2{
            position:relative;
            height: auto;
            width: 90%;
            float: left;
            top:10px;
            padding-left:10px;
        }


        #popup{
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: grey;
            z-index: 20;
            opacity: .5;
            display: none;
            
        }

        #popupimage{
            position: absolute;
            width: 50%;
            height: 100%;
            top: 15%;
            left: 25%;
            z-index: 21;
            display: none;
            color: white;
            text-align: right;
            overflow: scroll;
        }

        #popupimage img{
            width: 100%;
            height: auto;

        }



    }
        
                