/*selector {
  property: value;
}*/

h1
{
  color: white;
  font-size: 80px;
  font-family: "Fjalla One", sans-serif;
  border: solid black 2px;
  background: blue;
  padding: 10px;
  margin: 10px;
  
}
h2
{
  color: #107C10;
  font-size: 60px;
	font-family: 'Teko', sans-serif;
  text-decoration: underline blue dashed 5px;
}

p
{
  color: rgb(85, 115, 232);
	font-size: 40px;
  font-family: 'Dancing Script', cursive;
  font-weight: bold;
}

/* This is utilizing a div ID, we gain access to it by typing in the # and then the ID name*/
#test
{
  color: white;
  background-color: blue;
  width: 200px;
  padding: 10px;
  text-align: center;
}

/* This is utilizing a div class, we gain access to it by typing in the . and then the class name*/
.class
{
  color: white;
  background-color: green;
  width: 200px;
  padding: 100px;
  text-align: center;
}