body
{
	text-align: center;
	background-color: #2B58DE;
	
	font-family: 'Press Start 2P', monospace;
	font-size: 15px;
	line-height: 28px;
	
	margin: 0;
}

a
{
	word-break: break-word;
}

h1
{
	font-size: 24px;
	font-weight: bolder;
}

h2
{
	font-size: 18px;
	font-weight: bold;
}

h1, h2
{
	text-align: center;
	margin-bottom: 32px;
}

.conjr_headerpanel, .conjr_contentpanel
{
	padding: 32px;
}

.conjr_headerpanel > div, .conjr_contentpanel > div
{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.conjr_headerpanel
{
	background-color: #264FC7;
}

#title_box
{
	width: 500px;
}

.conjr_menu
{
	width: 150px;
	float: right;
}

.conjr_menu_item
{
	display: block;
	color: white;
	position: relative;
	margin-left: 4px;
	margin-top: 14px;
	cursor: pointer;
}

.conjr_menu_item::before
{
	content: " ";
	
	background-image: url("../images/pointer.png");
	width: 28px;
	height: 14px;
	
	position: absolute;
	left: -36px;
	top: 8px;
	
	visibility: hidden;
}

.conjure_menu_item:hover
{
	cursor: pointer;
}

.conjr_menu_item:hover::before, .conjr_menu_selected::before
{
	visibility: visible;
}

.conjr_bordered_box
{
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	padding: 32px;

	background-color: #36454F;
	box-shadow: inset 0 0 32px 0 #000, 0 0 32px 0 #000;

	border: 8px #FFD700 solid;
	border-radius: 20px;
	
	text-align: left;
	color: white;
}

.conjr_bordered_box::before
{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 3px #6f5411 solid;
	border-radius: 12px;
	pointer-events: none;
}

.conjr_bordered_box a
{
	color: lightblue;
}

.conjr_bordered_box + .conjr_bordered_box
{
	margin-top: 32px;
}