/*//////////////////////////////////////////////////////////*/
/*///////////////////// Page Color Map /////////////////////*/
/*//////////////////////////////////////////////////////////*/

/*
////// Logo Colors //////
Gold: #d8ae5e
Black: 
White: #ffffff
Grey: #39393d
/////////////////////////









*/





/* Page Body Format */
body {
    background-color : #39393d;
}

/* Header 1 Format */
h1 {
    color : white;
}

/* Header 2 Format */
h2 {
    color : white;
}

/* Header 3 Format */
h3 {
    color : white;
}

/* Paragraph Format */
p {
    color : white;
    padding: 5px;
}

/*///////////////////*/
/* Page Header Setup */
/*///////////////////*/

/* Header Block Settings */
.header {
  overflow: hidden;
  background-color: black;
  padding: 20px 10px;
}

/* Header Link Settings */
.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Logo Text Settings (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
  color: #d8ae5e
}

/* Mouse-Over Alteration */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}