body {
    background-color: black;
    color: white;
    display: grid;
    grid-template-columns: auto min-content auto;
    grid-template-rows: 20vh auto; 
    grid-template-areas: '. . .'
                        '. thing .'              
    
    ;
}
#content {
    width: max-content;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    grid-area: thing;
    border-width: 3px;
    border-color: rgb(172, 172, 172);
    border-style: solid;
    border-radius: 5px;

    text-align: center;
}