/*This is how you write a CSS comment*/
/* *************** */
/*Class selectors (Matches by class attribute)*/
/* *************** */
.showme{
	background-color: yellow;}
.uppercase{
	text-transform: uppercase;}
/* *************** */
/*ID selectors (Matches by id attribute)*/
/* *************** */
#production{
	color: purple;}
/*Harvesting text*/
#harvesting{
	color: red;}
#bottling{
	color: brown;}
/* ****************** */
/*Type Selectors (Matches elements by name)*/
/* ***************** */
header{
	border: dashed 1px green;}
p{
	color: blue;}
/* *************** */
/*Mixed selectors* (Uses mixed/various selector methods. ie: #someid p - which would grab all paragraphs inside the element with the id of someid.)/
/* *************** */
li .important{
	font-weight: bold;}
#production-section p{
	color: green;}
/* ****************** */
/*Advanced selectors*/
/* ****************** */
/*Child selector (Matches an element that is a direct child of another)*/
/*Links text color*/
a{
	color: red;}
/*Adjacent sibling selector (Matches an element that is the next sibling of another)*/
p.honey {
	padding-left: 20px;}
/*nth-child (This is not in your reading, but Google how it works. */
li:nth-child(2){
	padding: 10px;}