@charset "utf-8";
/* CSS Document */

:root {
  --main-key-color: #D45706;
  --main-hover-color: #B74C11;
}

@keyframes slidein {
	from {left: -20%;}
	to {left: 0%}
}
@keyframes slidedown {
	from {margin-top: -180px;}
	to {margin-top: 0}
}
@keyframes quoteme {
	from {
		bottom: -40px;}
	to {
		bottom: 0}
}
@keyframes fadein {
	from {
		opacity: 0;}
	to {
		opacity: 1}
}
@keyframes notify {
	0% {
		top: -42px;}
	20% {
		top: 0}
	100% {
		top: 0}
}

html {
	overflow: hidden;

}


body {
	height: 100%;
	padding: 0px;
	margin: 0px;
    color: #BBB;
    font-family: Arial, Helvetica, sans-serif;
	background-color: #333;
	background-image: url(../images/mazetile.png);
	background-repeat: repeat;
}
#bodyoverlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	padding: 0px;
	margin: 0px;
	background-image: linear-gradient(to right, rgba(4,4,4,0.8), rgba(4,4,4,0.2), rgba(4,4,4,0.8));
	z-index: -1;
}

section {
	width: 85%;
	margin: 35px auto 0 auto;
	border-bottom: 2px solid var(--main-key-color);
	overflow: hidden;
}


a:link, a:visited {
    color: #999;
	text-decoration: none;
}

a:hover {
	color: var(--main-key-color);
	text-decoration: none;
}

input[type=text], input[type=password] {
	background-color: #222;
	padding: 5px;
	font-size: 26px;
	text-align: center;
	border: 1px solid #111;
	border-bottom: 3px solid #111;
	border-radius: 7px;
	color: #999;
}

input[type=submit] {
	background-color: var(--main-key-color);
	padding: 5px 15px;
	width: 70%;
	font-size: 16px;
	text-align: center;
	border: 1px solid #111;
	border-bottom: 2px solid #111;
	border-radius: 5px;
	color: #222;
	margin: 10%;
}

input[type=submit]:hover {
	background-color: var(--main-hover-color);
}

.header_bar{
	width: 100%;
	min-width: 400px;
	height: 150px;
	
	animation-name: slidedown;
    animation-duration: 1s;
}

.header_logo{
	height: 100%;
	padding: 15px;
	background-image: linear-gradient(to right, rgba(4,4,4,0.5), rgba(4,4,4,0));

}

.highlight {
	color: var(--main-key-color);
}



.logomain {
	width: 100%;
	display: inline-block;
	font-size: 83px;
	font-weight: bold;
	line-height: 83px;
	padding-top: 10px;
	color: #777;
}
.logosub {
	width: 100%;
	display: inline-block;
	font-size: 18px;
	color: #777;
}

.header_super{
	float: right;
	width: 100%;
	height: 150px;
	background-color: #333;
	background-image: url(../images/trees.png);
	background-repeat: repeat;
}

.header_sub{
	width: 100%;
	height: 30px;
	background-color: #666;
	border-top: solid 2px #b17202;
}


* {box-sizing: border-box}
body {font-family: Arial, Helvetica, sans-serif;}

.navbar {
	float: right;
  	width: 100%;
  	background-color: var(--main-key-color);
	overflow: auto;
	border-top: solid 2px #222;
	border-bottom: solid 4px #111;
}

.navbar a {
  float: left;
  padding: 5px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  width: 25%; /* Four links of equal widths */
  text-align: center;
}

.navbar a:hover {
  background-color: var(--main-hover-color);
}

#notify-red {
	position: absolute;
	top: 0;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	background-color: #C00;
	color: #DDD;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	border-bottom: 1px solid #900;
	
	animation-name: notify;
    animation-duration: 2.5s;
	animation-delay: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 2;
	animation-direction: alternate;
}

#notify-green {
	position: absolute;
	top: 0;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	background-color: #090;
	color: #DDD;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	border-bottom: 1px solid #900;
	
	animation-name: notify;
    animation-duration: 3s;
	animation-delay: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 2;
	animation-direction: alternate;
}

.mediabox-right a {
	display: inline-block;
	width: 50%;
	margin-left: 25%; 
	margin-right: 25%;
	margin-bottom: 20px;
	padding: 10px;
	background-color: var(--main-key-color);
	border: 1px solid var(--main-key-color);
	text-align: center;
	color: #222;
}

.mediabox-right a:hover {
	background-color: transparent;
}


@media screen and (max-width: 700px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
	padding-left: 15px;
	padding-right: 15px;
  }
  
  .navbar {
	float: right;
  	width: 100%;
   }
}


main {
	position: absolute;
	top: 190px;
	bottom: 30px;
	left: 5%;
	right: 5%;
	overflow-x: auto;
	scrollbar-color: #444 #333;
	scrollbar-width: thin;
	
	animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 1s;
	animation-fill-mode: both;
}

@media screen and (max-width: 700px) {
	
main {
	top: 300px;
}
	
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #333;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #444;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#content {
	text-align: center;
	padding: 1%;
}




.menubox {
	display: inline-block;
	min-height: 200px;
	width: 40%;
	margin: 25px 2.5% 0 2.5%;
	border-bottom: 2px solid var(--main-key-color);
	border-left: 2px solid var(--main-key-color);
	background-image: linear-gradient(to top right, rgba(4,4,4,0.7), rgba(4,4,4,0.1));
	padding: 15px;
	vertical-align: top;
}

.menuiconbox {
	display: inline-block;
	height: 100%;
	width: 25%;
	margin: 0 3% 0 3%;
	text-align: center;
}

.menuicon {
	height: 120px;
	width: 100%;
	font-size: 80px;
	line-height: 120px;
}

.menuimgbox {
	float: left;
	height: 170px;
	margin-right: 10px;
	padding: 15px;
	
}
.menuimg {
	height: 100%;
}

.article {
	text-align: left;	
	overflow: hidden;
}

.article h1 {
	width: 100;
	font-size: 32px;
	border-bottom: 2px solid var(--main-key-color);
}

.article h2 {
	font-size: 22px;
	max-width: 50%;
	border-bottom: 2px solid var(--main-key-color);
	margin-top: 4%;
}

.mediabox-right {
	width: 35%;
	max-width: 700px;
	min-width: 300px;
	float: right;
	padding: 0 0 2% 2%;
}


@media screen and (max-width: 1300px) {
	
.menubox {
	width: 80%;
	
}

}
@media screen and (max-width: 700px) {
	
.menubox {
	height: auto;
}
.menuimgbox {
	height: auto;
	width: 100%;
	margin-right: 0;
	margin-bottom: 20px;
}
.menuimg {
	height: auto;
	width: 100%
}

.mediabox-right {
	width: 100%;
	float: right;
	padding: 0 2% 2% 0;
}


.menulink {
	display: inline-block;
	padding: 0 20px 0 20px;
	color: var(--main-key-color);
}

.menuwarn {
	display: inline-block;
	padding: 0 20px 0 20px;
	color: #900;
}

.helpbox {
	position: absolute;
	top: 10%;
	left: 30%;
	height: 60%;
	width: 40%;
	min-width: 450px;
	background-color: #222;
	padding: 10px;
}

.helpboxbutton {
	position: absolute;
	bottom: 5%;
	left: 30%;
	height: 40px;
	width: 40%;
	background-color: var(--main-key-color);
	line-height: 40px;
	color: gold;
}

.mainplate {
	display: none;
	height: 12vw;
	width: 70vw;
	margin: 25px 2.5% 0 2.5%;
	border: 1px solid #111;
	border-bottom: 3px solid #111;
	border-radius: 15px;
	background-color:var(--main-key-color);
	background-image: linear-gradient(to top, rgba(4,4,4,0.5), rgba(4,4,4,0));
	padding: 1vw;
	color: black;
}

.rearplate {
	display: none;
	height: 12vw;
	width: 70vw;
	margin: 25px 2.5% 0 2.5%;
	border: 1px solid #111;
	border-bottom: 3px solid #111;
	border-radius: 15px;
	background-color: white;
	background-image: linear-gradient(to top, rgba(4,4,4,0.6), rgba(4,4,4,0.1));
	padding: 1vw;
	color: black;
}

.plate {
	color: black;
}

.platechar {
	height: 100%;
}

.menublock {
	display: inline-block;
	width: 40%;
	padding: 10px;
	vertical-align: middle;
}

.menublock {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}


