/*
	Charls Sebastian
	ITWP 1050
	Homework 5 - CSS File
*/
/* Class that styles paragragphs */
.content-block {
/* Using class to style width */  
  width: 300px;
/* Using class to style height */ 
  height: 300px;
/* Using class to style border*/ 
  border: 5px solid paleturquoise;
/* Using class to style margin*/ 
  margin: auto;
  /* Using class to style float */ 
  float: left;
  /* Using class to style padding*/ 
  padding: 10px;
  /* Using class to position*/ 
  position: relative;
}
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;
 /* Using id to style background color*/     
    background-color: black;
   /* Using id to style flow*/ 
    overflow: auto;
   /* Using id to determine position*/ 
    top: 0px;
    left: 0px;
    /* Using id to determine opacity*/ 
    opacity: 1;
     /* Using id to determine shadowing*/
    box-shadow: 10px 10px;
}
/* ID that styles Family Heading */
#Family {
    color: rgb(214, 96, 214);
     /* Using id to style background color*/ 
    background-color: burlywood;
    /* Using id to style flow*/ 
    overflow: hidden;
     /* Using id to determine position*/ 
    top: 0px;
    left: 0px;
     /* Using id to determine opacity*/
    opacity: 1;
     /* Using id to determine shadowing*/
    box-shadow: 10px 10px;
}
/* ID that styles Time Passing By Heading */
#Time {
    color: rgb(119, 30, 119);
     /* Using id to style background color*/ 
    background-color: blanchedalmond;
    overflow: scroll;
     /* Using id to style flow*/ 
    position: relative;
    /* Using id to determine position*/ 
    top: 0px;
    left: 0px;
     /* Using id to determine opacity*/
    opacity: 1;
     /* Using id to determine shadowing*/
    box-shadow: 10px 10px;
}
/* ID that styles Religion Heading */
#Religion {
    color: palevioletred;
    background-color: darkkhaki;
    overflow: visible;
    top: 0px;
    left: 0px;
     /* Using id to determine opacity*/
    opacity: 1;
     /* Using id to determine shadowing*/
    box-shadow: 10px 10px;
}
/* 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;
}

/* Setting spacing of letters for headers */
h1 {
    letter-spacing: 3px;
    word-spacing: 1px;
    line-height: normal;
    text-transform: uppercase;
    text-shadow: 2px 2px;
  }
  
  h2 {
    letter-spacing: 2px;
    word-spacing: 1px;
    line-height: normal;
    text-transform: uppercase;
  }
  
  div{
    text-align: left;
  }
  