/* Joseph Ruiz
 * Lab 3 CSS */

body {
   background-color: orange;
}

h1 {
   text-align: center;
   text-decoration: underline;
   text-transform: uppercase;
   color: white;
}

p {
   text-indent: 25px;
   font-family: "courier", "sans-serif";
}

ul {
   list-style-type: square;
}

li {
   font-family: "Arial Black", Gadget, sans-serif;
}

a {
   color: black;
   font-size: 18px;
   font-style: oblique;
   text-shadow: 2px 2px white;
}
