body {
 font-family: sans-serif;
 background-color: #200f09
}

a {
	color: #aec0cf;
}

img.header {
  width: 100%; /* Makes the image fill the width of its parent container */
  height: auto; /* Automatically scales the height to maintain the aspect ratio */
  display: block; /* Removes any extra space below the image, especially if it's inline */
}

span.announce {
  position: fixed; /* Positions the element relative to the viewport */
  top: 50%;        /* Moves the top edge to the vertical center */
  left: 50%;       /* Moves the left edge to the horizontal center */
  transform: translate(-50%, -50%); /* Adjusts the element to truly center it */
  z-index: 1000;   /* Ensures the text appears above other content */
  text-align: center; /* Centers the text within its own container */ 
}

.head1 {
  font-weight: bold;
  font-size: 4em;
  font-stretch: expanded;
}

.head2 { 
  font-weight: bold;
  font-size: 2em;
  padding: .25em;
  float: left;
  display: block;
  clear: both;
}

.darkBrown {
  color: #200f09;
}

.head4 { 
  font-weight: bold;
  font-size: 1.1em;
  padding: .25em;
  float: left;
  display: block;
  clear: both;
}

.sub {
  padding: 0 0 0 1.5em;
  float: left;
  display: block;
  clear: both;
  margin-block-start: 0.1em;
  margin-block-end: 1.2em;
}

.lightBrown {
  color: #ffddad;
}

.white {
  color: #f3e4d3;
}