@import url("/colors.css");

body {
	font-family: "MS Gothic", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	background-image: var(--gradient2);
	/* gradient has to be background-image */
	color: #f8ffdd;
	background-attachment: fixed;
	z-index: auto;
	margin: 0px;
}

body html .section {
	min-height: 100%;
	height: 100%;
	scrollbar-width: none;
	margin: 0px;
}

.music {
	padding: 5px;
	align-items: middle;
	float: left;
	position: absolute;
}

.clickme {
	color: var(--col1);
	position:absolute;
	animation-name: clickme;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	top: 20px;
	left: 20px;
}

.follow-container {
	position: absolute;
	margin: auto;
	right: 1px;
}

@keyframes clickme {
	0% {
		top:20px;
		left:20px;
		animation-timing-function: ease-out;
	}
	50% {
		top:25px;
		left:25px;
		animation-timing-function: ease-in;
	}
	100% {
		top:20px;
		left:20px;
		animation-timing-function: ease-out;
	}
}


.musname {
	display: none;
}

.page {
	display: block;
	align-content: center;
	text-align: center;
}

.section {
	width: 85%;
	padding: 3px;
	margin: 0px auto 10px auto;
	-webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
}


/* 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;
}

.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: 1 / 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 */

.main {
	grid-area: main;
	background-image: var(--gradient3);
}

.fadein {
	opacity: 0;
	position: relative;
}

.loaded {
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeout {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fanart {
	grid-area: fanart;
	background-color: var(--col5);
}

#topBar {
	height: auto;
	color: var(--col5);
	background-color: var(--col1);
	border-radius: 5px;
	vertical-align: center;
	margin: 5px;
}

.copyright {
	background-image: var(--gradient4);
	text-align: left;
	padding: 0px;
	width: 40%;
	border: solid;
	border-width: 3px;
	border-color: var(--col1);
	height: 50px;
	z-index: 1;
}

a {
	color: white;
}

a.highlight {

	position: relative;
	display: inline-block;
	overflow: hidden;
	
	background-image:
	linear-gradient(var(--col4), var(--col2));
	background-repeat: no-repeat;
	background-size: 0px 100%;
	transition:
		background-size 1s;
	margin: -1px;
}

a.highlight:hover {
	color: white;
	text-shadow: 0 0 2px #000;
	background-size: 100% 100%;
	transition:
		background-size 0.2s;
}

.webrings > button {
	background-image: var(--gradient3);
	color: #f8ffdd;
	font-family: "MS Gothic", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	border-color: var(--col1);
	margin: auto;
}

.copyright > .text {
	float: left;
	margin: auto;
	position: absolute;
	top: 25%;
	left: 5%;
}
.copyright > img {
	margin: 0px;
	padding: 0px;
	float: right;
	position: absolute;
	right: 0;
}

.small {
	width: 35%;
}

.small > .grid-item {
	text-align: center;
}
.tooltip {
	position: absolute;
	background-color: var(--col4);
	border: solid;
	border-color: var(--col5);
	border-width: 1px;
	font-size: 16px;
	padding: 4px;
	z-index: 3;
}

.tooltip > a:hover {
	color: white;
	text-shadow: 0 0 2px var(--col5);
}

.bg-container {
	position: absolute;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.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;
	}
}

.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;
	}
}

#statuscafe {
	padding: 0.5em;
	background-color: var(--col5);
	border: 1px solid var(--col4);
	border-width: 3px;
	width: 75%;
	color: white;
	margin-left: auto;
	margin-top: 1em;
}
#statuscafe-username {
	margin-bottom: 0.5em;
	color: var(--col4);
	text-align: left;
}
#statuscafe-content {
	margin:  1em 0.5em 1em;
	text-align: left;
}

.guestbook {
	border: 3px solid var(--col4);
	width: 75%;
	margin-left: auto;
	padding: 0.5em;
}

.sideheader {
	color: var(--col1);
	font-size: 32px;
	font-family: Times New Roman;
	text-align: left;
	text-shadow: var(--col2) 1px 1px;
	position: relative;
	top: 10px;
	background-color: --var(col4);
	text-decoration: underline;
}

/*

brightest
F8FFDD
D3DE5D
8EA604
6DB168
367D15
darkest

*/
