/*
	Charls Sebastian
	ITWP 1050
	Homework 1 - CSS File
*/
/* Class that styles paragragphs */
.chocolate-background-text {
    color:chocolate;
  }
html,body{margin:0;padding:0}
/* Styles the background */
body{font: 76% arial,sans-serif;text-align:center;background-color: rgb(188, 184, 179);}
/* ID that styles Orgins Heading */
#Origins {
    color: blueviolet;
}
/* ID that styles Family Heading */
#Family {
    color: rgb(214, 96, 214)
}
/* ID that styles Time Passing By Heading */
#Time {
    color: rgb(119, 30, 119)
}
/* ID that styles Religion Heading */
#Religion {
    color: palevioletred
}
/* Setting page margin */
p{margin:0 10px 10px}
/* Class that styles contact info */
.midnightblue-background-text {
    color:midnightblue
} 
/*ID that aligns left class homepage */
#container {
    text-align: left;
}