@font-face{
	font-family: "MarkScript";
	src: url("./fonts/Marck_Script/MarckScript-Regular.ttf") format('truetype');
	font-weight: normal;
	font-style: normal;
}

pre.pre{
	border-color: rgb(152, 10, 180) !important;
	border-width: 3px !important;
	/* white-space: pre; */
	padding:15px;
	margin: 5px;
	background: #120E09;
	color: white;
}
body{
	background: rgb(189, 188, 188);
}
a, a:hover{
	color: inherit;
	text-decoration: none;
}
.hidden{
	display: none !important;
}
#page_container {
	min-height: 100vh;
	
}

#main_content{
	height: -webkit-fill-available;
	height: 100%;
	margin-top: auto;
	margin-bottom: auto;
}
.menu-block{
	height: 100%;
	flex-wrap: wrap;
	transition: all 1s ease-in;
}

.menu-block .menu-item{
	height: 100%;
	padding: 0px 15px;
	justify-content: center;
	color: white;
	transition: all 0.2s ease-in;
}
.menu-block .menu-item:hover, .menu-block .menu-item.active{
	background: rgba(97, 97, 97, 0.5);
	color: white;
}

.menu-button{
	font-size: 36px;
	color: white;
	transition: all 0.2s ease-in;
}
.main-header{
	height: 78px;
	background: #120E09;
	font-family: 'Open Sans', sans-serif;
	position: sticky;
	z-index: 99999;
	top: 0px;
}

.menu-block.mobile-menu{
	width: 100%;
	height: auto;
	max-height: 0;
	background: #120E09;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	
}
.menu-block.mobile-menu.open{
	max-height: 500px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.menu-block.mobile-menu .menu-item{
	display: none;
}
.menu-block.mobile-menu.open .menu-item{
	display: flex;
	height: auto;
}

.main-header > div{
	height: 100%;
}
.main-header .brand{
	font-size: 42px;
	font-weight: 600;
	padding: 12px 4px;
	line-height: 32px;
	color: rgb(250, 250, 250);
	font-family: "MarkScript";
}
.main-header .tagline{
	padding-left: 15px;
    padding-top: 4px;
	font-size: 14px;
	color: rgb(189, 188, 188);
}
.error_page{
	text-align: center;
	height: 100vh;
}