


*{
    box-sizing: border-box;
}

.row::after{
    content: "";
    clear:both;
    display: table;
}



body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5em;
    margin-top: 0%;
    background-image:url("../Military2pictures/f-18.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .9;
}
nav {
    width:100%;
    height:auto;
    background-color: aliceblue;
    text-align: left;
    opacity: 1.0;
   
}
nav a {
    text-decoration: none;
}
nav ul li {
    list-style: none;
    margin-left: -35px;
    border-bottom: gray 2px solid;
    border-left: gray 2px solid;
    text-align: center;
    width: 95%;
    
    font-size: .8em;
}
nav ul li a:link, nav ul li a:visited {
    display: block;
    background-color: white;
    color:black;
    text-decoration: none;
}
nav ul li a:hover, nav ul li a:active{
    display:block;
    background-color:black;
    color:white;
}
a:link, a:visited, a:hover, a:active{
    color:rgb(0, 247, 255);
    text-shadow: 1px 1px black;
}
header{
    width: 100%;
    margin-top: 0%;
    background-color: black;
    padding: 10px;
    box-shadow: 3px 3px #555;
    font-size: 2,0em;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}
h1{
    font-family: "Roboto", sans-serif;
    color: white;
    text-shadow:3px 3px gray;
    text-align: center;
    font-size:xx-large;
    background-color: rgb(0, 0, 0);
    box-shadow: cornsilk;
}
h2{
    font-family: "Roboto", sans-serif;
      color:black;
      text-shadow: 3px 3px gray;
      text-align: center;
      font-size:x-large;
      font-size: 2em;
}
h3{
    margin: auto;
    padding: 20px;
    text-align: left;
}
p{
    padding: 20px;
}

section, div{
    background: antiquewhite;
    opacity: 1.0;
}
aside {
    background: white;
    text-align:right;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0, 1px, 2px, rgba(0,0,0,0.24);
}
footer{
    background: black;
    color:#ffffff;
    text-align: right;
    font-size: 14px;
    padding: 15px;
}
img{
    box-shadow: 2px 2px #555; 
    min-width: 150px;
    width: 100%;
    opacity: 1;
}
.indent{
    text-indent: 40px;
}
.center{
    margin-right: auto;
    margin-left: auto;
}

.title{ grid-area:h;}
.menu{grid-area: n;}
.content{grid-area: m;}
.right{grid-area: a;}
.contact{grid-area: f;}


/*For mobile phones: */

.grid-container{
    display: grid;
    grid-template-areas: 
    'h h h '
    'n m a'
    'n m a '
    'n m a '
    'f f f ';
    grid-gap:0px;
    padding: 4px;
    background: white;
}

/* For tablets: */
@media only screen and (min-width: 600px){
    .grid-container{
        display: grid;
        grid-template-areas: 
        'h h h h'
        'n m m a '
        'n m m a'
        'f f f f';
        grid-gap:0px;
        padding: 5px;
        background: gray;
    }
    /*
    nav img{
        width:75%;
    }
    nav ul li{
        width: 100%;
        height: 100px;
        display:flex;
        margin-right: 2%;
        font-size:.75em;
    } */
}
/* For desktop: */
@media only screen and (min-width: 1000px){
    .grid-container{
        display: grid;
        grid-template-areas: 
        'h h h h h h'
        'n m m m a a'
        'n m m m a a'
        'n m m m a a'
        'f f f f f f';
    grid-gap:0px;
    padding: 10px;
    background: black;
    /*
nav ul li{
    width:100%;
    display: block;
    margin-top: 2%;
} */
    
    }

}


.icon-bar{
    width:100%; /*Full-width*/
    background-color: blue;
    overflow:auto; /*Overflow due to float*/
}
.icon-bar a {
    float:left; /*Float links side by side*/
    text-align: center; /*Center align text*/
    width:20%; /*Equal width(5 icons with 20% width each = 100%) */
    padding: 12px 0;
    transition:all 0.3 ease; /*Add transition for hover effects*/
    color: white;
    font-size: 36px;
}
.icon-bar a:hover{
   background-color: #000;
   color: white;
   font-size: 5em;
   transition: all 2s;
}
