HEADER SECTION

MAIN SECTION

STEP 1

The entire section has to be addressed as a grid.

                        
    .grid-layout{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }

    main{
        background-color: #81CCF3;
        grid-column: 4 / 13;
        grid-row: 2 / 8;
    }
                        
                    
STEP 2

As the sections get laid out the positioning is set up by the column and row line numbers.

                        
        main{
            background-color: #81CCF3;
            grid-column: start line number / end line number;
            grid-row: start line number / end line number;
        }
                
            

SECTION BLOCK

                
    section{
        background-color: #3e7327;
        grid-column: 1 /13;
        grid-row: 5 /6;
        width: auto;
    }
                
            
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.