/*
	Charls Sebastian
	ITWP 1050
	Homework 3 - 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;
  font-weight: bold;
/* Shorthand for all background properties*/
  background: url("keralabackground.jpg") right bottom no-repeat, url("keralabackground1.jpg") left top repeat, hsla(89, 43%, 51%, 0.3); opacity: 1.6;;
}

/* 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;
/* Setting line height for paragraph*/
  line-height: 15px;
/* Justifying center for paragraph*/
  justify-content: center;
/* Indenting for paragraph*/
  text-indent: 10px;
}
/* Class that styles contact info */
.midnightblue-background-text {
    color:midnightblue;
} 
/*ID that aligns left class homepage */
#container {
    text-align: left;
}

h1 {
/* Setting spacing of letters for h1 */
    letter-spacing: 3px;
/* Setting spacing of words for h1 */    
    word-spacing: 1px;
/* Setting spacing of lines for h1 */    
    line-height: normal;
/* Setting capitals for all h1 */
    text-transform: uppercase;
/* Setting shadows for h1*/
    text-shadow: 2px 2px;
  }
  
  h2 {
/* Setting spacing of letters for h2 */
    letter-spacing: 2px;
/* Setting spacing of words for h2 */ 
    word-spacing: 1px;
/* Setting spacing of lines for h2 */
    line-height: normal;
/* Setting capitals for all h12 */
    text-transform: uppercase;
  }