html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;

  background-color: F4F4F4;
  height: 100%; /* Ensure the entire page height matches the viewport or content height */
  bottom: 0;
  position: relative;
  top: 1.5vw;
}

a {
    color: #d39f72;
    outline: 2px #f4f4f4;
}

a:hover {
    color: #333433;
}

/*
@font-face {
    font-family: 'olympusregular';
    src: url('olympus_fonts/olymrg_-webfont.woff2') format('woff2'),
         url('olympus_fonts/olymrg_-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

*/


/* Bottom Navigation Bar */

.botnav {
  background-color: #332B33;
  overflow: hidden;
  bottom: 0;
  height: 100px;
  float: center;
  display: block;
  color: #D39F72;
  font-size: 20px;
  position: static;
  border-top: 5px solid black; 
  /* margin-bottom: 2.5%; */
}

.botnav a {
  float: center;
  color: #f2f2f2;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 20px;
}

/* Top Navigation Bar */

  .topnav {
  background-color: #333433;
  position: fixed; /* sticky; */
  top: 0 ;
  z-index: 99999;
  height: 3.5vw;
	width: 100%;
	left: 0;
	right: 0;

  /*
  display: flex; 
  justify-content: center;
  align-items: center;
  */
}

  .topnav a {
  float: left;
  color: #d39f72;
  text-align: center;
  padding:  1% 2%; /* 14px 16px; */
  text-decoration: none;
  font-size:  125%; /* 17px; */

}
/*
.topnav a:hover {
  background-color: #ddd;
  color: #333433;
}
*/
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav a:not(.imhov):hover {
  background-color: #ddd;
  color: #333433;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 125%;
  border: none;
  outline: none;
  color: #d39f72;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd; /* white; */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/*
.topnav .dropbtn, .dropdown {
  font-size: 125%;
  font-family: inherit;
  font-weight: bold;
  text-decoration: none;
  border: none;
  padding: 0.5% 1%;
}
*/

/* Responsive layout */

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Links on index.html */

.mainlink a:link {
  background-color: #ddd;
  width: 250px;
  height: 50px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  top: 50%;
  margin: auto;
  display: block;
  color: #D39F72;
  text-decoration: none;
  border-radius: 5px;
  font-size: 25px;
}

/* Default text properties */

.maintxt {
  margin-left: 20%;
  margin-right: 5%;
  margin-top: auto;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  top: 3.5vw;
  font-size: calc(.5em + 1vw);
  line-height: 200%;
}

@media screen and (max-width: 800px) {
  .maintxt {
    margin-left: 1%;
    margin-right: 1%;
  }  
}  

.txtindex {
  margin-top: auto;
  text-decoration: none;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
font-family: 'olympusregular', Arial, sans-serif;
font-weight:normal;
font-style:normal;
font-size: 50px;
text-align: center;
}

.link a:link {
  color: #333;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

.link a:visited {
  color: #333;
  text-decoration: none;
}

.link a:hover {
  color: #D39F72;
  text-decoration: none;
}

.ol {
  margin-right: 300px;
}

.row {
  display: flex;
  text-align: left;
  padding: 10px;
  margin: 10px;
}

.column {
  flex: 50%;
  padding: 5px;
}

/* Dropdown 

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: inherit;
  border: none;
  outline: none;
  color: white;
  padding: 5px 10px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
*/
.sticky {
	position: -webkit-sticky;
	position: fixed; /* sticky; */
	top: 0;
  	z-index: 9999; /* 100; */
}
