/* Comments inside CSS are similar to C syntax */

body{
	color: #C99700;
	background-color: #0C2340;
}

h1 {
	color: #C99700;
  font-size:77px;
  text-align: center;
}

.alignright{
  text-align: right;
}

.bgcyan{
  background-color: cyan;
}

.bgndblue{
  background-color: #0C2340;
}

.bgndgold{
  background-color: #C99700;
}

.bgndgreen{
  background-color: #00843D;
}

.bgwhite{
  background-color: #FFFFFF;
}

/* Combine multiple styles into one class */
.center_and_bold {
    font-size: 25pt;
    text-align: center;
    color: orange;
    text-decoration: underline;
}

.textndblue{
    color: #0C2340;	
}

.textndgold {
    color: #C99700;
}

.textndgreen {
    color: #00843D;	
}

.textred{
    color: red;	
}

.textwhite{
    color: #FFFFFF;	
}

.textblack{
    color: #000000;	
}

/* CSS Class Selectors */
.centered {
    text-align: center;
}  

.headline {
    font-size: 44pt;
}

/* For the table */
table {
  font-family: arial, sans-serif;
  border: "1";
}

th {
  border: 1px solid #ff0000;
  background-color: #0000ff;
  text-align: center;
  padding: 8px;
}


td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

tr:nth-child(odd) {
  color: #0C2340;
  background-color: #aaaaaa;
}