* {
	box-sizing: border-box;
}

@font-face {
	font-family: VGA8;
	src: url('/fonts/PxPlus_IBM_VGA8.ttf');
}

body {
	background: url('/wallpaper/594.GIF');
	background-repeat: repeat;
	font-family: VGA8;
}

/*Main*/
.container {
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	grid-template-columns: repeat(4, 1fr);
	border-image: url('/svg/border1.svg') 5 fill stretch;
	border-width: 10px;
	border-style: solid;
	gap: 6px;
	height: 500px;
	width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
	color: #509c17;
}

.shrine-box1 {
	grid-area: 1 / 1 / 3 / 3;
	border: 2px solid #509c17;
	font-size: 0.8rem;
	overflow: hidden;
	margin: 4px 0 0 4px;
}

.shrine-box2 {
	grid-area: 1 / 3 / 3 / 5;
	border: 2px solid #509c17;
	font-size: 0.8rem;
	overflow: hidden;
	margin: 4px 4px 0 0;
}

.shrine-box3 {
	grid-area: 3 / 1 / 5 / 3;
	border: 2px solid #509c17;
	font-size: 0.8rem;
	overflow: hidden;
	margin: 0 0 4px 4px;
}

.shrine-box4 {
	grid-area: 3 / 3 / 5 / 5;
	border: 2px solid #509c17;
	font-size: 0.8rem;
	overflow: hidden;
	margin: 0 4px 4px 0;
}

.container legend {
	font-size: 1rem;
	text-align: center;
}
/*Main end*/

/*Scrollbar*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #509c17;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #306230;
}

::-webkit-scrollbar-thumb:active {
	background-color: #8bac0f;
/*Scrollbar end*/