/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Author's Custom Styles
*/
.gridContainer{
    grid-template-rows: auto;
    grid-gap: 10px;
}
.gridContainer *{
    font-family: sans-serif;
}
nav{
    padding: 10px;
    background-color: navy;
    box-shadow: 2px 2px 5px #999;
    position: sticky;
    top: 0px;
}
nav a:first-of-type{
    margin-right: 6em;
    font-weight: bold;
    padding-left: 0px;
}
nav a{
    padding: 0px 30px;
    color: white;
    text-decoration: none;
}
aside{
    text-align: center;
    padding: 10px;
    align-self: center;
}
aside h3{
    width: 100%;
    text-align: center;
    color: white;
    background-color: navy;
    padding: 10px 0px;
    margin: 0;
    box-shadow: 2px 2px 5px #999;
}
aside p{
    width: 95%;
    margin: auto;
}
aside img{
    width: 100%;
    padding: 5px;
}
section{
    box-shadow: 2px 2px 5px #999;
    padding: 10px;
    margin-bottom: 20px;
}
section h1{
    width: 100%;
    text-align: center;
    color: white;
    background-color:navy;
    padding: 10px 0px;
    margin: 0;
    box-shadow: 2px 2px 5px #999;
}
footer{
    padding: 10px;
    background-color: navy;
    box-shadow: 2px 2px 5px #999;
    color: white;
}
a{
    color: navy;
}
@media only screen and (max-width: 769px){
    nav{
        margin-bottom: 10px;
    }
    nav a:first-of-type{
        display: block;
        margin-bottom: 10px;
    }
    aside{
        margin-bottom: 20px;
    }
}
