:root {
	--code-color: darkgreen;
	--code-bg-color: #aaaaaa;
	--code-font-size: 14px;
	--code-line-height: 1.4;
	--scroll-bar-color: #c5c5c5;
	--scroll-bar-bg-color: #f6f6f6;
}

pre {
	color: var(--code-color);
	font-size: var(--code-font-size);
	line-height: var(--code-line-height);
	background-color: var(--code-bg-color);
}

.code-block {
	max-height: 100px;
	overflow: auto;
	padding: 8px 7px 5px 15px;
	margin: 0px 0px 0px 0px;
	border-radius: 7px;
}

::-webkit-scrollbar-corner { background: rgba(0,0,0,0.5); }

* {
	scrollbar-width: thin;
	scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

*::-webkit-scrollbar-track {
	background: var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bar-color);
	border-radius: 20px;
	border: 3px solid var(--scroll-bar-bg-color);
}
body {
	color: #444444;
	font-family: calibri;
}
.nav {
	background-color: #2e4a62;
	border: none;
;
	width: 100%;
	position:fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	text-transform: uppercase;
	font-family: calibri;
}
.nav a {
    	float: left;
	display: block;
	color: #f2f2f2;
    	text-align: center;
    	padding: 14px 16px;
    	text-decoration: none;
}
.nav a:hover {
    	background: darkgreen;
    	color: white;
} 
.nav a:active {
	background: #99c74b;
}

.container { 
	background-color: white;
	height:auto;
	width: auto;
	margin-top: 3%;
	margin-right: 1%;

}
.right {
	width: auto;
	height: absolute;
	overflow: hidden;
	background: white;
	border-radius: 6px;
	margin-top: 11%;
	margin-left: 60%;
	margin-right: 5%;
	margin-bottom: 5%;
	padding-bottom: 1%;
	box-shadow: 0px 0px 50px rgba(0,0,0,.4);

}
.right .banner {
	width: auto;
  	height: 30px;
	padding-top: 20px;
	padding-bottom: 10px;
    	font-size: 20px;
    	text-align: center;
    	color: WHITE;
    	font-weight: bold;
    	background: darkgreen;
    	border: darkgreen solid 1px;
    	border-top-right-radius: 6px;
    	border-top-left-radius: 6px;
    	font-family: Arial;
	padding-bottom: 2%;
}
input[type=text]{
	text-align:center;
	width: 90%;
	padding: 12px 6px;
	color: #444444;
	border:  #2a992c;
	background-color: #f7f7f7;
	margin-top:8%;
	margin-left:5%;
	margin-right: 5%;	
}
input[type=password]{
	text-align:center;
	width: 90%;
	padding: 12px 6px;
	color: #444444;
	border:  #2a992c;
	background-color: #f7f7f7;
	margin-top:2%;
	margin-left:5%;
	margin-right: 5%;	
}
input[type=text]:focus {
	cursor:pointer;
	background-color: white;
	border-color:darkgreen;
	border-style: solid;
}
input[type=submit]:hover {
	background-color: #0b113b;
	border: none;
	color: white;
	-webkit-transition:background 0.5s ease-in-out;
	-moz-transition:background 0.5s ease-in-out;
	transition:background-color 0.5s ease-in-out;
}
input[type=submit] {
	background-color: #080d30;
	border: none;
	padding: none;
	color: white;	
	width: 90%;
	height: 45px;
	 margin-top:5%;
	margin-left:5%;
	margin-right: 5%;
	border-radius: 7px;
}
input[type=password]:focus {
	cursor:pointer;
	background-color: white;
	border-color:darkgreen;
	border-style: solid;

}
h1 { 
	text-align: center; 
}
.left {
	font-family: calibri;
	width: 52%;
	height: 57%;
	float: left;
	overflow: hidden;
	background: white;
	border-radius: 6px;
	margin-left: 4%;
	margin-right:60%
	padding-bottom:2%;
	box-shadow: 0px 0px 50px rgba(0,0,0,.4);
}
.center {
	font-family: calibri;
	width: 52%;
	height: 57%;
	float: left;
	overflow: hidden;
	background: white;
	border-radius: 6px;
	margin-left: 4%;
	margin-right:60%
	padding-bottom:2%;
	box-shadow: 0px 0px 50px rgba(0,0,0,.4);
}


.title {
  color: grey;
  font-size: 18px;
}
.button:hover {
	background-color: darkgreen;
	border: none;
	color: white;
	-webkit-transition:background 0.5s ease-in-out;
	-moz-transition:background 0.5s ease-in-out;
	transition:background-color 0.5s ease-in-out;
}
.button {
	background-color: #444444;
	border: none;
	padding: none;
	font-color: white;	
	border-radius: 7px;
    	text-align: center;
    	padding: 14px 16px;
    	margin-left:3%;
	margin-right:3%;
	width:auto;
}
.button a {
	text-decoration: none;
}

.modal-window>div {
  width: 800px;
  position: relative;
  margin: 10% auto;
  padding: 2rem;
  background: #fff;
 color: #444;
border-color: black;
border-style: solid;
border-width: 2px;
 text-align: justify;
    text-justify: inter-word;
}

.modal-window header {
  font-weight: bold;
}

.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}
