* {
	box-sizing: border-box;
}

@font-face {
	font-family: VGA8;
	src: url('/fonts/PxPlus_IBM_VGA8.ttf');
}

body {
	background: url('/wallpaper/blackgreen2.jpg');
	background-repeat: no-repeat;
	font-family: VGA8;
}

/*Layout*/
.item-left {
	grid-area: 1 / 1 / 8 / 3;
}

.item-right {
	grid-area: 1 / 3 / 8 / 9;
}

.item-footer {
	grid-area: 8 / 1 / 9 / 9;
}

.container {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(7, 1fr) auto;
	gap: 6px;
	border: none;
	overflow: hidden;
	height: 100vh;
	max-width: 1000px;
	min-width: 50vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
}

.container div {
	color: #509c17;
	border-image: url('/svg/border1.svg') 5 fill stretch;
	border-width: 10px;
	border-style: solid;
}

.item-left {
	min-height: 30vh;
	max-width: 15vw;
	min-width: 10vw;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.item-right {
	min-height: 30vh;
	min-width: 50vw;
	min-width: 40vw;
	overflow: hidden;
}

.item-footer {
	min-height: 2.5vh;
	max-height: 5vh;
	min-width: 40vw;
	padding-bottom: 6px;
	position: relative;
}
/*Layout end*/

/*Left Content*/
#pfp {
	height: 125px;
	width: 125px;
}

.nav-header {
	font-size: 1.5rem;
	margin: 4px 0 4px 0;
	color: #fff;
}

.link {
	display: block;
	font-size: 1rem;
	text-decoration: underline;
	color: #509c17;
}

.link:hover {
	color: #fff;
}

div.wdpbutton {
	position: absolute;
	bottom: 2%;
	left: 3%;
	text-align: left;
	border: none;
	height: 25px;
	width: 200px;
}

.wdpbutton img:hover {
	content: url('/svg/wdphover.svg');
}

.wdpbutton img:active {
	content: url('/svg/wdpactive.svg');
}
/*Left Content end*/

/*Right Content*/
.item-right {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(8, 1fr);
	font-size: 0.8rem;
}

/*Right Content end*/

/*Footer Content*/
.item-footer .footer-left {
	text-align: left;
	border: none;
	font-size: 1rem;
	margin-left: 6px;
}

.item-footer .footer-right {
	text-align: right;
	border: none;
	float: right;
	margin-right: 6px;
}
/*Footer Content end*/