body {
    display: grid;
    min-height: 100vh;
    min-width: 100vw;
    grid-template-columns: 1fr;
    grid-template-rows: 7rem 1fr 10rem;
    grid-template-areas: 
        'header'
        'main'
        'footer';
}


header {
    grid-area: header;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}


#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    color: var(--color-text);
    font-size: 1rem;
    background-color: var(--bg-footer);    
}

#footer p {
    text-align: center;
    margin: 0.2rem 0;
}
/* 
header, main, footer, aside {
    border: 5px solid blueviolet
} */