* {
      font-family: Alegreya, serif;
}

* > a {
	text-decoration: none;
	color: #DEBE3F;
}

    body {
    	background: -webkit-linear-gradient(to right, #000000, #404040);  /* Chrome 10-25, Safari 5.1-6 */
	    background: linear-gradient(to right, #000000, #404040); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      font-size: 100%;
	    max-width: 1440px;
	    margin: 0 auto;
	    color: white;
    }

    /* Container for the menu */
    .side-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 250px;
      height: 100%;
      background: #222;
      color: #fff;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1000;
      padding-top: 60px;
    }

    /* Show menu when active */
    .side-menu.active {
      transform: translateX(0);
    }

    /* Toggle button (hamburger) */
    .menu-toggle {
      position: fixed;
      top: 15px;
      right: 15px;
      background: #222;
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 1100;
      border-radius: 4px;
    }

    /* Menu links */
    .side-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .side-menu ul li {
      border-bottom: 1px solid #333;
    }

    .side-menu ul li a {
      display: block;
      color: #fff;
      padding: 12px 20px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .side-menu ul li a:hover {
      background: #444;
      color: #debe3f;
    }

    /* Dropdown */
    .dropdown {
      display: none;
      background: #333;
    }

    .dropdown a {
      padding-left: 40px;
    }

    /* Show dropdown on parent click */
    .side-menu ul li.open > .dropdown {
      display: block;
    }

    @media (min-width: 768px) {
      .menu-toggle {
        display: none;
      }
      .side-menu {
        transform: translateX(0);
        width: 220px;
      }
    }

article {
	margin-left: 10px;
  margin-right: 260px;
  padding: 10px;
}

.logo-container {
  display: flex;
  flex-direction: row; /* Ensures items are in a row */
  justify-content: space-between; /* Distributes space between logo and nav */
  align-items: center; /* Vertically centers items */
  padding: 0 20px; /* Optional: add some padding */
}

.logo {
  	text-decoration: none;
	color: #DEBE3F;
	display: block;
	margin-left: auto;
	margin-right: auto;
    padding-right: 20px;
}

.logo-caption {
  font-style: italic;
  font-size: 0.9em;
  color: #ccc;
  margin-top: 0.5em;
}


.clearorf {
	margin: 20px 0 0 0;
	clear: both;
}

.id-headline1 {
    font-size: 2em;
    color: #DEBE3F;
	text-align: center;
	justify-content: center;
	padding-top: 10px;
}

.id-headline2 {
    font-size: 1.7em;
    color: white;
	text-align: center;
	justify-content: center;
	padding-top: 10px;
}

.id-headline2a {
    font-size: 1.7em;
    color: #DEBE3F;
	text-align: center;
	justify-content: center;
	padding-top: 10px;
}

.id-headline3 {
    font-size: 1.5em;
    color: white;
	text-align: center;
	justify-content: center;
	padding-top: 10px;
}

.anchorlink {
  font-size: 0.8em;
  text-align: right;
  justify-content: right;
  float: right;
}

/* gold text stuff */

.gold, .hover-gold:hover {
	color:#404040!important;
	background-color:#DEBE3F!important
}

.border-gold, .hover-border-gold:hover {
	border-color: #DEBE3F!important;
}

.text-gold, .hover-text-gold:hover {
	border-color: #DEBE3F!important;
}

.text-gold2 {
  color: #DEBE3F;
}

button {
    background-color: #DEBE3F;
    border: none;
    color: #404040;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.ghost-button,
.ghost-button:visited {
    display: inline-block;
    width: 200px;
    padding: 8px;
    border: 2px solid;
    border-radius: 5px;
    text-align: center;
    outline: none;
    text-decoration: none;
    transition: border-color 0.3s ease-out, color 0.3s ease-out;
}

.ghost-button:hover,
.ghost-button:active {
    color: #DEBE3F;
    border-color: #DEBE3F;
    transition: border-color 0.4s ease-in, color 0.4s ease-in;    
}

.buttonpara {
  	text-align: center;
    padding-top: 20px;
}

footer {
    width: 95%;
}

footer > p {
	width: 100%;
	font-size : 0.8em;
    color: #b2beb5;
    text-align: right;
}

footer > div {
	width: 100%;
	font-size : 0.8em;
    color: #b2beb5;
    text-align: right;
}

.nodecs {
	text-decoration: none;
	color: #DEBE3F;
}

.linkref {
	text-decoration: none;
	color: #DEBE3F;
}

.articlepara {
  padding-left: 10px;
  padding-top: 10px;
  text-align: justify;
}

.articlepara2 {
  text-align: justify;
  font-size: 1.2em;
}

.blockcentre {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
  justify-content: center;
  width: 99%;
}

.centrist {
  display: block;
	margin-left: auto;
	margin-right: auto;
  width: 50%;
}

.normcentre {
  justify-content: center;
  text-align: center;
}