/* Author a CSS file that validates.
   This is meant to be simple to get started with CSS.
   All that is expected is to have one selector (perhaps on body)
   and two declarations (e.g. property-value pairs).
   For properties, consider picking from
   "font-family", "background-color", and/or "color"
*/

body {
   font-family: Arial, Helvetica, sans-serif;
   background-color: rgb(137, 2, 29);
}

h1 {
   color: aqua;
}

h2 {
   border: 2px solid aqua;
   border-width: 6px;
   padding: 5px;
   text-align: center;
   color: aqua;
}

main {
   background-color: aliceblue;
   font-weight: bold;
   text-shadow: 2px 2px 5px aqua;
   padding: 5px;
}

footer {
   color: aqua;
}