/* technical stuff - set sizing to border box method */ html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } /* style the various structural elements */ html { background-color: White } body { background-color: White; } header { background-color: #F45556; } nav { background-color: #FCAB68; } article { background-color: #FFD239; } section { background-color: #88BB75; } aside { background-color: #1EADDF; } footer { background-color: #BA99C0; }