body {
    display: grid;
    grid-template-areas: 
        'header header header'
        'grammy zac bob'
        'movies stone stone'
        'movies shel shel'
        'rugby shel shel';
}

body > div {
    border: 1px solid black;
}

.header {
    grid-area: header;
}

.bob {
    grid-area: bob;
}

.grammy {
    grid-area: grammy;
}

.zac {
    grid-area: zac;
}
.movies {
    grid-area: movies;
}

.stone {
    grid-area: stone;
}

.rugby {
    grid-area: rugby;
}

.shel {
    grid-area: shel;
}
