* {
	box-sizing: border-box;
}

@font-face {
	font-family: "Ithaca";
	src: local("sans-serif"),
		url("/other/Ithaca-LVB75.ttf");
}

/*Layout*/
.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, sans-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;
	overflow-y: auto;
}

.item3 {
	padding: 12px;
	min-height: 20vw;
	min-width: 30vw;
	overflow-y: scroll;
	position: relative;
}

.item5 {
	min-height: 2.5vh;
	min-width: 30vw;
	padding: 3px;
	text-align: right;
}
/*Layout end*/

.item2 .pfp {
	width: 125px;
	height: 125px;
}

/*Navbar*/
.item2 .sidenav {
	overflow-x: hidden;
	border: none;
}

.sidenav a, .navdropbutton {
	font-size: 1.5rem;
	text-decoration: none;
	text-align: center;
	display: block;
	background: none;
	cursor: pointer;
	color: #c1cf8a;
	margin-top: 6px;
	margin-bottom: 6px
}

.sidenav a:hover {
	color: #fff;
}

.navdropbutton:hover {
	color: #509c17;
}

.navdropcont  {
	display: none;
	border: none;
}

.navdropcont a {
	color: #509c17;
	font-size: 1rem
}

.navdropcont a:hover {
	color: #fff;
}
/*Navbar end*/

/*Middle Content*/
.msgbox {
	position: absolute;
	top: 2%;
	left: 2%;
	right: 2%;
}

.flexcont {
	position: absolute;
	top: 10%;
	left: 2%;
	border: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 96%;
}

.album {
	max-width: 150px;
	max-height: 200px;
	margin: auto;
	margin-bottom: 6px;
}
	

.album img {
	border: none;
	width: 100px;
	height: 100px;
	margin: 6px;
}

.albumDetails {
	border: none;
	max-width: 150px;
}

details {
	width: inherit;
	font-size: 1rem;
}

details > summary {
	padding: 2px 6px;
	width: inherit;
	cursor: pointer;
	border: 2px solid #c1cf8a;
	font-size: 1rem;
}

details > p {
	padding: 2px 6px;
}
/*Middle Content end*/

fieldset {
	border: 1px dashed #c1cf8a;
	width: inherit;
}

legend { 
	font-size: 2rem;
}

/*Scollbar*/
::-webkit-scrollbar {
    width: 13px;
	height: 13px;
}
 
::-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;
}
 
/*The thumb*/
::-webkit-scrollbar-thumb:vertical {
	height: 200px;
	width: 13px;
	background: transparent;
	background-image: url(/png/thumbtop.png), url(/png/thumbbottom.png), url(/png/thumbmiddle.png);
	background-position: top left, bottom left, top left;
	background-size: 13px 16px, 13px 16px, 13px 18px;
	background-repeat: no-repeat, no-repeat, round;
	background-clip: border-box, border-box, content-box;
	background-origin: border-box;
}
/*Scrollbar end*/
 