*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

header
{
	background-color: #cc00ff; /* maroon */ 
}

li
{
	list-style: none;
}

a
{
	color: white;
	text-decoration: none;
}

a.link
{
    color: #04AA6D; /* green */
}

a.link:hover
{
    color: #cc00ff; /* maroon */
}

.navbar
{
	min-height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 24px;	
}

.nav-menu
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.nav-branding
{
	font-size: 2rem;
}

.nav-branding:hover
{
	color: black;
}

.nav-header
{
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.nav-link
{
    color: white;
}

.nav-link:hover
{
	color: black;
}

.rng
{
    color: #04AA6D; /* green */  
}

.rng:hover
{
    color: #cc00ff; /* maroon */   
}

.hamburger
{
	display: none;
	cursor: pointer;
}

.bar
{
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	.webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: white;
}

.hamburger::before
{
	content: "Menu";
	position: relative;
	color: white;
}

img
{
	border: 1px;
	border-radius: 4px;
	padding: 5px;
}

.hamburger
{
	display: block;
}

.hamburger.active .bar:nth-child(2)
{
	opacity: 0
}

.hamburger.active .bar:nth-child(1)
{
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3)
{
	transform: translateY(-8px) rotate(-45deg);
}

.nav-menu
{
	position: fixed;
	left: -100%;
	top: 70px;
	gap: 0;
	flex-direction: column;
	background-color: #cc00ff;
	width: 100%;
	text-align: left;
	transform: 0.3s;
}

.nav-item
{
	margin: 8px 0;
}

.nav-menu.active
{
	left: 0;
}

#index-subheader.text
{
	width: 90%;
	position: absolute;
	color: #04AA6D; /* green */ 
	top: 8.5%;
	left:5%;
}

#green.text
{
	color: #04AA6D; /* green */
}

#subheader.text
{
	width: 90%;
	height: 7%;
	position: absolute;
	font-size: 40px;
	background-color: #04AA6D; /* green */ 
	color: white;
	top: 12%;
	left:5%;
}

#index-main.text
{
	width: 90%;
	height: 80%;
	position: absolute;
	color: #000;
	top: 24%;
	left:5%;
	text-align:left;
	font-size: 32px;
}

#main.text
{
	width: 90%;
	height: 80%;
	position: absolute;
	color: #000;
	top: 20%;
	left:5%;
	text-align:left;
	font-size: 32px;
}

#blocked.text
{
	color: #FF0000;
	text-align:center;
	font-size: 256px;
}

#code.text
{
    font-family: sans-serif;
    font-size: 16px;
}

#selective_code.text
{
    font-family: Helvetica; 
    font-size: 32px;
}

#footer.text
{
	background-color: #04AA6D; /* green */ 
	width: 100%;
	color: white;
	text-align: center;
	font-size: 16px;
	line-height: 50px;
}

#pure_c_cpp.text
{
	background-color: #04AA6D; /* green */ 
	color: white;
	font-size: 72px;
}

/* Main Buttons */
.button
{
  border: 5px solid #04AA6D;
  color: white;
  border-radius: 16px;
  height: 50px;
  width: 140px;
  font-size: 24px;
  cursor: pointer;
  background-color: #cc00ff;
  margin-bottom: 4px;
}

.button:hover 
{
  color: black;
}

.panel_button
{
  border: 5px solid #04AA6D;
  color: black;
  border-radius: 16px;
  height: 360px;
  width: 360px;
  font-size: 30px;
  cursor: pointer;
  background-color: white;
  margin-bottom: 4px;
  font-family: times-new-roman;
}

.panel_button:hover 
{
  border: 5px solid #cc00ff;
}

.panel_button_header
{
	color: #04AA6D;
	font-size: 68px;
	position: relative;
	top: 10px;
	text-align: center;
}

.panel_button_image
{
	position: relative;
	top: 0px;
	text-align: center;
}

.panel_button_main
{
	position: relative;
	top: 0px;
	left: 5px;
}

.panel_button_dev_mode
{
	color: #FF0000;
	position: relative;
	top: 5px;
	text-align: center;
}

.container 
{
   text-align:center;
} 
 button 
{
     display:inline-block;
}

