body{
    font-family: Arial, Helvetica, sans-serif;
}
header{
    background-color: red;
    grid-area: header;
    height: 70px;
}
aside{
    grid-area: aside;
    background-color: yellow;
    width: 200px;
}
aside div{
    background-color: white;
    border: 1px solid red;
    width: 80%;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

aside div h3, p{
    text-align: center;
    margin-top: -3px;
}

section{
    grid-area: section;
    background-color: greenyellow;
    width: 200px;
}

article section{
    width: 100%;
    background-color: white;
}

nav{
    background-color: rgb(129, 129, 129);
    width: 100%;
    height: 100%;
    text-indent: 20px;
    grid-area: nav;
}

nav a{
    padding: 0px 10px;
    padding-top: 10px;
    background-color: whitesmoke;
    margin: 5px;
    text-decoration: none;
    color: black;
    font-weight: 100;
}

nav a:hover{
    background-color: yellowgreen;
}

#current{
    font-weight: bold;
    background-color: orangered;
}

nav h2{
    font-size: medium;
}

footer{
    background-color: gray;
    grid-area: footer;
    height: 50px;
    text-align: center;
}

.article{
    grid-area: article;
}

img{
    border: 2px solid black;
}

.container{
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas: 'header header aside'
    'nav nav aside'
    'nav nav aside'
    'nav nav aside'
    'nav nav aside'
    'section article aside'
    'section article aside'
    'section article aside'
    'section article aside'
    'footer footer footer';
}