body {
background-color: black;
margin: 25px 50px 75px 100px;
}

table, h1, h2, h3, ul {
color: red;
}

p {
   color:darkRed;
   font-family: verdana;
   font-size: 15px;
}
    
span.boldtext {
    font-weight: bold;
}

span.italictext {
    font-style: italic;
}

ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li.menu {
  float: left;
}

li.menu a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li.menu a:hover {
  background-color: Maroon;
}

.active {
  background-color: #04AA6D;
}

 /* Add a gray right border to all list items, except the last item (last-child) */
li.menu {
  border-right: 1px solid #bbb;
}

li.menu:last-child {
  border-right: none;
} 

table {
     width:100%;
}

table, th, td {
  border: 1px solid red;
  border-collapse: collapse;
}

th {
    text-align: center;
    vertical-align: middle;
}

td {
    text-align: left;
    vertical-align: middle;
}

th, td {
  padding: 15px;
}

tr {
  background-color: white;
}
