@charset "utf-8";
/* CSS Document */

/* NAVIGATION START*/
/* Add a black background color to the top navigation */
.topnav {
  	background-color: #693000;
  	overflow: hidden;
	width: 100%;
	z-index: 9999;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 25px;
  font-family: bangers;
  letter-spacing: 2px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #eb6b02;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #eb6b02;
  color: white;
}

.topnav .icon {
	display: none;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}
 
/*NAVIGATION END*/

