body{
    background-color: black;
    color: white;
    grid-template-rows: auto 1fr 1fr;
    grid-template-areas: 'navBar' 'main' 'footer';
}
main{
    grid-area: main;
    text-align: center;
}