/* sales.css */

h1 {
    background-color: orange;
  border:  solid 3px black;
  text-align: center;
  font-size: 500%;
  
}


body {
  background-color: red;
  text-align: center;

}

/* Table Styling */
table {
	border-collapse: collapse;
}

table, th, td {
	border: 4px solid black;
	padding: 12px;
}

tfoot {
	text-align: right;
}

/* Table Class Styling */
.trow {
  text-align: center;
}

 table.center {
    margin-left:auto; 
    margin-right:auto;
  }

  body {text-align:center;}



#nav {
width:950px;
margin:0 auto;
list-style:none;
}
#nav li {
float:left;
}
#nav a {
display:block;
text-align:center;
width:150px; /* fixed width */
text-decoration:underline;