body {
   background-color: #B99976;
}

h1 {
   background-color: #987554;
   color: #E5D3B3;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
   text-transform: uppercase;
   text-align: center;
}


h2 {
   text-align: center;
   background-color: #165b62;
   color: #fed25a;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
}

h3 {
   background-color: aliceblue;
   text-align: center;
   color: #fed25a;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
}

p {
   font-size: 20px;
   font-family: Arial, Helvetica, sans-serif;
   margin-left: 30px;
   line-height: 30px;
}

li {
   margin-bottom: 50px;
}

footer {
   text-align: center;
}


/****
Use Your Class Attribute
****/
.myclass {
   color: crimson;
}

/****
Use Your Selector Attribute
****/
nav p {
   font-weight: bold;
   display: inline;
}

nav {
   text-align: center;
}

/****
Group Attribrutes
****/
h1,
h2,
h3 {
   font-family: 'Playpen Sans', cursive;
}