

/* GRID */
/* GRID */

.grid-container {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: repeat(8, 1fr); 
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 10px;
	max-height:900px;
}

.grid-item {
	border: solid;
	border-width: 3px;
	border-color: var(--col2);
	text-align: left;
	padding: 10px;
	width: stretch;
	overflow: auto;
}

.filler {
	grid-area: 1 / 1 / 2 / 2;
	background-color: var(--col5);
	border-color: white;
	text-align: center;
	display: grid;
  	place-items: center;
}

.nav {
	grid-area: 1 / 2 / 2 / 6;
	background-color: var(--col5);
	text-align: center;
	display: grid;
  	place-items: center;
}

.info {
	grid-area: 2 / 2 / 7 / 6;
	background-image: url(gfx/overlay.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-color: var(--col1);
	color: var(--col5);
	border-color: var(--col5);
	overflow: auto;
	max-height:552px;
}
.buttons {
	grid-area: 7 / 2 / 9 / 6;
	background-color: var(--col6);
	width: 3fr;
}
.updates {
	grid-area: 7 / 6 / 9 / 8;
	background-color: var(--col7);
	overflow: auto;
	width: 2fr;
	background-image: url(gfx/overlay2.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	height: 200px;
}
.webrings {
	grid-area: 1 / 6 / 7 / 8;
	background-color: var(--col5);
	text-align: center;
	min-height: 500px;
}

.sidebar {
	grid-area: 2 / 1 / 9 / 2;
	background-color: var(--col5);
	text-align: center;
	min-height: 500px;
	min-width: 100px;
	display: grid;
	place-items: center;
}

/* END GRID */
/* END GRID */

.buttoncontent {
	justify-content: initial;
	display: flex;
}

.doll.matcha-theme{
	background-image: url(/gfx/doll/matchadoll.png);
	width: 250px;
	height: 250px;
}

.doll.papaya-theme{
	background-image: url(/gfx/doll/papayadoll.png);
	width: 250px;
	height: 250px;
}
.matcha-bg1 {
	background: url("/gfx/tilebg_layer_1.png") repeat;
	-webkit-animation: dl 15s linear infinite;
	-moz-animation: dl 15s linear infinite;
	-o-animation: dl 15s linear infinite;
	animation: dl 15s linear infinite;
	background-attachment: fixed;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.25;
}

@-webkit-keyframes dl {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -500px 500px;
	}
}

.matcha-bg2 {
	background: url("/gfx/tilebg_layer_2.png") repeat;
	background-blend-mode: lighten;
	-webkit-animation: ur 25s linear infinite;
	-moz-animation: ur 25s linear infinite;
	-o-animation: ur 25s linear infinite;
	animation: ur 25s linear infinite;
	background-attachment: fixed;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

@-webkit-keyframes ur {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 500px -500px;
	}
}

.papaya-bg1 {
	background: url("/gfx/tilebg2_layer_1.png") repeat;
	background-blend-mode: lighten;
	-webkit-animation: ur2 25s linear infinite;
	-moz-animation: ur2 25s linear infinite;
	-o-animation: ur2 25s linear infinite;
	animation: ur2 25s linear infinite;
	background-attachment: fixed;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

@-webkit-keyframes ur2 {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 1000px -381px;
	}
}

.papaya-bg2 {
	background: url("/gfx/tilebg2_layer_2.png") repeat;
	background-blend-mode: lighten;
	-webkit-animation: ul2 25s linear infinite;
	-moz-animation: ul2 25s linear infinite;
	-o-animation: ul2 25s linear infinite;
	animation: ul2 25s linear infinite;
	background-attachment: fixed;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

@-webkit-keyframes ul2 {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -2000px -381px;
	}
}

