#container {
    /* Grid layout */
    grid-template-columns:repeat(8, 100px); /* 8 times 100 */
    grid-template-rows:repeat(41, 100px); /* 20 rows all 100px each*/
}

/* Really stupid thing abt the span thing. The final row/columns needs to be +1. Cuz its "end before"*/
#c1 { /* Title */
    grid-column:1 / 9;
    grid-row:3;
    text-align:center;
}

#c2 { /* Text */
    grid-column:1 / 9;
    grid-row:4 / 42;
}

#codeblock {
    border:2px solid white;
}
code {
    font-size:small;
}