/*Remember to use American spellings e.g. color*/
/* Changes the colour of headings*/
h1, h2, h3, h4, h5, h6 {
  color: darkblue;
}
/* Changes the colour of container called header. 191970 is midnightblue*/
.container-header {
  background-color: #191970;
  background-image: none;
}
/* Changes the colour of container called footer*/
.container-footer {
  background-color: #191970;
  background-image: none;
}
