#wrapper{
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(50px, 1fr) repeat(6, minmax(0, 200px)) minmax(50px, 1fr);
}
div{
    border: solid 1px;
}
#nav{
    text-align: center;
    grid-column: 2/8;
    grid-row: 1/2;
    height: 100px;
    background-color: rgba(0, 0, 255, 0.418);
}
#img{
    text-align: center;
    grid-row: 2/3;
    grid-column: 2/8;
    height: 550px;
    background-color: rgba(255, 0, 0, 0.418);
}
#text{
    text-align: center;
    background-color: rgba(72, 255, 0, 0.418);
    grid-row: 3/4;
    grid-column: 2/8;
    height: 450px;
}
#footer{
    text-align: center;
    background-color: rgba(255, 255, 0, 0.418);
    grid-row: 4/5;
    grid-column: 2/8;
    height: 75px;
}
body{
    margin: 0;
}
/* USELESS STUFF TO COLOR BG */
#lnav{
    background-color: rgba(0, 0, 255, 0.218);
}
#rnav{
    background-color: rgba(0, 0, 255, 0.218);
}
#limg{
    background-color: rgba(255, 0, 0, 0.218);
}
#rimg{
    background-color: rgba(255, 0, 0, 0.218);
}
#ltext{
    background-color: rgba(72, 255, 0, 0.218);
}
#rtext{
    background-color: rgba(72, 255, 0, 0.218);
}
#lfooter{
    background-color: rgba(255, 255, 0, 0.218);
}
#rfooter{
    background-color: rgba(255, 255, 0, 0.218);
}