/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply grid layout to grid-container */
.grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460.5px) minmax(0,460.5px) minmax(0, 1fr); /* four columns */
    grid-template-rows: 84px 1056px 400px 60px; 
}
nav{
    grid-row: 1/2;
    grid-column: 2/4;
    /*background-color: rgba(70, 98, 114, 0.5);*/
    position: sticky;
}
nav ul{
        display: flex;
        list-style-type: none;
        margin-top: 50px;
        font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
        
}
nav a{
    text-decoration: none;
    color: rgb(241, 170, 36);
    font-size: 30px;
    margin: 12px ;
    
    
    
    /* background-color: rgb(70,98,114); */
    
}
.clawimage{
    grid-row: 1/2;
    grid-column: 1/5 ;
    background-image: url(gclawer.png);
    background-size: 50%;
    background-position: center;
    background-color: rgb(70, 98, 114);
    

}

.div2{
    padding-left: 0px;
}
.div1 a{

    color: rgba(249,249,228,1);
    font-size: 75px;
    line-height: 0;
    

    
}

  
.div3{
    
    grid-row: 2/3;
    grid-column: 1/5  ;
    background-image: url(superchargedgodzilla.png);
    transform: scaleX(-1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.div3::after {
    grid-row: 2/5;
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%; /* This stuff give it the awesome fade look*/
    height: 100%;
    background: linear-gradient(180deg, rgba(80,160,205,0) 0%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
}
.div41{
    grid-area: 2/2/3/4;
    /*background-color: rgba(226, 226, 199, 0.5);*/
    z-index: 1;

}
.div4{
    grid-area: 2/2/3/3;
    z-index: 2;
}
.div4 h2{
    color: rgb(240, 179, 13);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    margin-left: 4%;
    margin-top: 5%;
}
.div4 p{
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
    margin-left: 4%;

    margin-top: 2%;
    

}
.div5{
    grid-area: 2/1/4/5;
    /*background: rgb(80,160,205);*/
    
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(1,2,2,1) 100%);
    /*background: linear-gradient(180deg, rgba(80,160,205,1) 0%, rgba(1,2,2,1) 100%);*/
}
.seaguy{
    grid-area: 3/2/4/3;
    background-image: url(deepseaman.jpg);
    background-size: cover;
    margin-left: 4%;
    margin-top: 4%;
    margin-bottom: 4%; 
    margin-right: 4%;
}
.div61{
    grid-area: 3/2/4/4;
    /*background-color: rgba(70, 98, 114, 1);*/ 
}
.div6{
    grid-area: 3/3/4/4;  
}
.div6 h3{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    margin-left: 1%;
    font-size: 25px;
    color: rgb(240, 179, 13);

}
.div6 p{
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: 20px;
     margin-left: 1%;
     margin-right: 1%;
     color: antiquewhite;
}
.div6 a{
    text-decoration: none;
    
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    font-style: italic;
    /*color: rgb(10, 29, 34);*/
    color: rgb(203, 220, 224);

}
.div6 h2{
    text-align: end;
    margin-top: 42%;
    margin-right: 1%;
}
.div7{
    grid-area: 4/1/5/5;
    background-color: rgba(1,2,2,1);
    font-family: Arial, Helvetica, sans-serif;
    font-size: smaller;
    color: rgb(151, 222, 224);
    text-align: center;
    font-style: italic;
}
.div7 a{
    text-decoration: none;
    color: rgb(255, 215, 140);
    margin-bottom: 5%;
}

@media screen and (max-width: 991px){
    .grid-container{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .div4{
        grid-column: 2/4;
    }
    
    nav ul{
        flex-flow: column nowrap;
        margin-left: 5%;
    }
    .div1 a{
        color: rgba(249,249,228,1);
    }
    .div4 h2{
        margin-left: 7%;
    }
    .div4 p{
        margin-left: 7%;
    }
    .seaguy{
        margin-left: 20%;
    }
}
@media screen and (max-width: 767px){
    .seaguy{
        display:none;
        
    }
    .div6{
        grid-column: 2/4;
        padding-left: 6%;
    }
    .div6 p{
        padding-left: 0.5%;
    }
}
