/*
	Charls Sebastian
	ITWP 1050
	Homework 4 - 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;
}

/* 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;
  }
/*styling the image & posistion*/
#img2{
  background-position: left;
}
/*styling of list 1*/
ul.a {list-style-type: square; text-align: center; display: inline-block;
}
/*styling of list 2*/
ul.b { list-style-type: square; text-align: center; display: inline-block;list-style-image: url('icons8-coco-tree-48.png'); list-style-position: outside;
}

ul[title]::before {
  content: attr(title);
  /* then add some nice styling as needed, eg: */
  display:inline-block;
  font-weight: bold;
  padding: 4px;
}
/*styling the table*/
table { 
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px;
/*styles the pointer*/
}
body{
  cursor: url(icons8-coco-tree-48-fotor-bg-remover-2023041022387.png), pointer;
}
/*styling the block of text with custom icon*/
span.glossary:before{
  content: url(icons8-coco-tree-48.png) '';
}
span.glossary:after{
  content: url(icons8-coco-tree-48.png) '';
}
/*color for block of text*/
.glossary {
  color: chartreuse;
}
/*styling the quotes*/
q {
  quotes: "�" "�" "�" "�";
}