/* Master default Apr 23, 2025 */
/* Variable Declarations */
:root {
	--blue: 	#1e90ff;
	--white: 	#ffffff;
	--VRed: 	#E31E23;
	--HOrange: 	#F37021;
	--BGreen:   #08591C;
}

* {
  box-sizing: border-box;
}

/* Main Body */
body {
	background-color: black;
	margin: 0;
	color: var(--BGreen);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

/* Image Controls */
img {
	width: 15px;
	padding: 1px;
	margin: 0px;
	opacity: 1;
}

img:hover {
	opacity: 0.5;
}

.tcontainer {
	position: relative;
}

.topright {
	position: sticky;
	top: 8 px;
	right: 16 px;
}

.topleft {
  position: sticky;
  top: 8px;
  left: 16px;
}

.bottomleft {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.center {
  position: absolute;
  top: 5%;
  width: 5%;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
	font-family: Arial, sens-serif;
	overflow: hidden;
  	background-color: black;
	font-style: normal;
	font-size:1em;
	color:white;
}

/* Style the topnav links */
.topnav a {
	float: right;
	display: block;
	color: white;
	text-align: center;
	padding: 0px 0px;
	text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
	background-color: var(--HOrange);
	font-size:1em;
	color: black;
}

/* Style the content */
.content {
  background-color: black;
  padding: 0px;
  height: 90%; 
}

/* Style the footer */
.footer {
	background-color: var(--VRed);
	padding: 0px;
  	text-align: center;
}

.CR {
	font-style: normal;
	font-size:1em;
	color:var(--VRed);
}

@media screen and (max-width: 600px) {
	.pushNav {
		width: 75%;
		right: -75%; 
	} 
}
@media screen and (min-width: 601px) {
	.pushNav {
		width: 350px;
		right: -350px; 
	} 
}

ul.pushNav {
	padding: 0;
	margin: 0;
	list-style-type: none; 
}

.pushNav {
	height: 100%;
	position: fixed;
	top: 0;
	z-index: 100;
	overflow: hidden;
	background: #2e2f35;
	transition: ease-in-out 0.5s; 
}

/* Burger Menu - Line */
.pushNav hr {
    border: 1px solid var(--VRed); }

/* Burger Menu - Text */
.pushNav,
.pushNav a {
  font-size: 1em;
  font-family: Arial, sens-serif;
  font-weight: 100;
  color: white;
  text-decoration: none; 
}

.pushNavIsOpen {
  overflow: auto;
  height: 100%; }

.js-topPushNav.isOpen,.pushNav_level.isOpen {
	right: 0;
}

/* Burger Menu - Cursor Property */
.closeLevel,.openLevel,.burger {
	cursor: pointer; 
}

.openLevel,.closeLevel,.pushNav a {
	padding: .75em 0;
	display: block;
	text-indent: 10px;
	transition: background 0.4s ease-in-out; 
}
.openLevel:hover,.closeLevel:hover,.pushNav a:hover {
	  background: var(--HOrange);
	  color: black;
}
/* Burger Menu - Frist Line */
.hdg {background-color: #1e1e24; }
/* Burger Menu - Text */
.closeLevel,closelevel > i {
	font-size: 1em;
	color: #a5a5a4; 
}
/* Burger Menu - Icon */
.burger {
	position: absolute; 
	top: 15px;
	right: 15px;
	padding:0px;
}

.screen {
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition: opacity 0.5s ease-in-out; 
}

.pushNavIsOpen .screen {
  height: 100%;
  opacity: 1; }


.box {
            width: 100%;
            padding: 20px;
            margin: 10px 0;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
        }

        /* Default styles for mobile devices */
        @media (max-width: 600px) {
            .box {
                background-color: #ffcccc;
            }
        }

        /* Styles for tablets */
        @media (min-width: 601px) and (max-width: 1024px) {
            .box {
                background-color: #ccffcc;
            }
        }

        /* Styles for desktops */
        @media (min-width: 1025px) {
            .box {
                background-color: #ccccff;
            }
        }




/* 
Arial (sans-serif)
Verdana (sans-serif)
Tahoma (sans-serif)
Trebuchet MS (sans-serif)
Times New Roman (serif)
Georgia (serif)
Garamond (serif)
Courier New (monospace)
*/
