body {
    background-color: rgba(227, 217, 75, 0.833);
    display: grid;
    grid-template-rows: 10vh 40vh 70vh;
    grid-template-columns: 25vw 50vw 20vw;
    background-image: url(1kaYSnz4gqzLLi5laX1Q_8.9286x.webp);
    background-position: center;
    background-attachment: fixed ;
}

#header{
    grid-row: 1/2;
    grid-column: 1/4;
    text-align: center;
   
}

nav{
    border: burlywood;
    border-top: solid white;
    border-left: solid white;
    border-right: solid white;
    border-bottom: solid white;
    grid-row: 2/3;
    grid-column: 1;
    border-radius: 15pt;
    background-color:rgba(0, 0, 0, 0.285);
    
}

nav ul{
list-style: none;
padding-left: 5pt;
}
main {
    grid-row: 2/5;
    grid-column: 2/3;
    text-align: center;
    padding-left: 5pt;
    background-color:rgba(0, 0, 0, 0.285);
    font-size: large;
}

h7, h8, h9, h10, h11, h12{
    text-decoration: underline;
}

main ul{
    list-style: none;
}

h3{
    grid-row: 2/3;
    grid-column: 3;
}

footer {
    grid-row: 3;
    grid-column: 3;
    padding-top: 250%;
    padding-left: 80%;
}

table {
    grid-column: 3;
    grid-row: 2;
    background-color:rgba(0, 0, 0, 0.285);
    border-collapse: collapse;
}


