/*Backround Gradient*/
body{
  background: linear-gradient(to left,#FC0303,#032DFC);
} 
/* Header 1 background */
h1
{
  background-color: Slateblue;
}
/* Header 1,2,3, and 4 colors */
h1 {color:Red;}
h2 {color:mediumSlateBlue;}
h3 {color:mediumSlateBlue;}
h4 {color:Grey;}
/* Background color and alighment */
#page-container {
	  	text-align: center ;
}
/* Align the Bulletpoints that are centered */
ul {
  color: black;
  list-style-position: inside;
}
ul {
  color: black;
  display: table;
  margin: 0 auto;
  text-align: left;
}