* {
	box-sizing: border-box;
}

@font-face {
	font-family: "Ithaca";
	src: local("sans-serif"),
		url("/other/Ithaca-LVB75.ttf");
}

.item1 { grid-area: header; }
.item2 { grid-area: left; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }

body {
	margin: 0;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		'left header right'
		'left main right'
		'footer footer footer';
	gap: 4px 4px;
	background-image: url('/png/clouds.png');
	background-repeat: repeat-x;
	background-size: 25vw 100vh;
	position: absolute;
	left: 25%;
	font-family: Ithaca, serif;
	text-wrap: normal;
}

div {
	background-color: transparent;
	text-align: center;
	border-width: 10px 10px 10px 10px;
	border-style: solid;
	border-image: url("/png/border4.png") 10 10 10 10 fill round;
	color: #c1cf8a
}

.item1 {
	min-height: 10vh;
	min-width: 30vw;
	padding-top: 3px;
}

.item2, .item4 {
	min-height: 20vh;
	min-width: 10vw;
}

.item3 {
	padding: 12px;
	min-height: 20vw;
	min-width: 30vw;
	overflow: auto;
}

.item5 {
	min-height: 2.5vh;
	min-width: 30vw;
	padding: 3px;
	text-align: right;
}

.item2, .item4 {
	overflow-y: auto;
}

.item2 .pfp {
	width: 175px;
	height: 175px;
	margin-top: 6px;
}

ul {
	list-style-type: none;
	font-size: 16px;
}

::-webkit-scrollbar {
    width: 13px;
	height: 13px;
}
 
::-webkit-scrollbar-button:vertical {
}
 
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: block;
}
 
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
    display: none;
}
 
::-webkit-scrollbar-button:vertical:increment {
    background-image: url(/png/arrowdown.png);
	background-repeat: no-repeat;
}
 
::-webkit-scrollbar-button:vertical:decrement {
    background-image: url(/png/arrowup.png);
	background-repeat: no-repeat;
}
 
::-webkit-scrollbar-track:vertical {
}
 
/* Top area above thumb and below up button */
::-webkit-scrollbar-track-piece:vertical:start {
}
 
/* Bottom area below thumb and down button */
::-webkit-scrollbar-track-piece:vertical:end {
}
 
/* Track below and above */
::-webkit-scrollbar-track-piece {
}
 
/* The thumb itself */
::-webkit-scrollbar-thumb:vertical {
	background-image: url(/png/thumb2.png);
	background-repeat: round;
}
 