/*
text block styling
centres the text blocks and sets the background colour
*/

body {
  margin: 0 auto;
  max-width: 50em;  
  background: #C2D3DD;
}

/*Makes the default font Arial or, failing that, some other sans serif font*/

body {
  font-family: "Arial", sans-serif;
}

/*Spacing to make the whole thing more readable*/

body {
  line-height: 1.5;
  padding: 4em 1em;
}

h2 {
  margin-top: 1em;
  padding-top: 1em;
}

/*Colour for the main text*/

body {
  color: #182C3C;
}

/*Darker text for main 2 headers*/

h1,
h2,
strong {
  color: #0D1516;
}

/*Balance correction for the page*/

code {
  padding: 2px 4px;
  vertical-align: text-bottom;
}

pre {
  padding: 1em;
}
