/*Main title with bottom navy line*/
h1{
  display: block;
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 32px;
  margin:0;
  padding:0;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 4px solid #171f2c;
}

/* Gold line */
.line{
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0;
  width: 80px;
  border-bottom: 4px solid #9c640c;
}

/*Box for text*/
.box{
  display: block;
  border: 1px solid #767572;
  box-shadow: 0px 5px 25px #767572;
  padding: 15px;
}

/* Fixed Width Button */
.fixed_button{
  background-color: #171f2c;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  font-size: 12px;
  width: 100%;
}

a.fixed_button{
  color: white;
}

a.fixed_button:hover{
  color: #9c640c;
}

a.fixed_button:visited{
  color: white;
}

a.fixed_button:visited:hover{
  color: #9c640c;
}


