:root {
	--body-bg-image: url("resource/background.png");
	--header-image: url("resource/banner.gif");
}


html {
	height: 100%;
}
body {
	font-family: 'Lemon Milk', sans-serif;
	margin: 0;
	background-color: #fff;
	color: #000;
	background-image: var(--body-bg-image);
	padding: 20px;
	height: 100%;
	overflow: hidden;
}
h1 {
	text-align: center;
	color: white;
	text-shadow: 3px -3px grey;
	margin-top: 30px;
	font-size: 3em;
}
.header {
	background: linear-gradient(to bottom,  rgba(76,76,76,1) 0%,rgba(89,89,89,1) 12%,rgba(102,102,102,1) 25%,rgba(71,71,71,1) 39%,rgba(44,44,44,1) 50%,rgba(0,0,0,1) 51%,rgba(17,17,17,1) 60%,rgba(43,43,43,1) 76%,rgba(28,28,28,1) 91%,rgba(19,19,19,1) 100%);
	border-radius: 20px 20px 0px 0px;
	border: 1px solid #1c1c1c;
	opacity: 100%;
	max-width: 1200px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
}
.audio-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
audio {
	border: 2px solid white;
}
main {
	background-color: rgba(0, 0, 0, 0.3);
	max-width: 1200px;
	max-height: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	border: 2px solid white;
	justify-content: space-between;
	overflow: scroll;
	overflow-x: hidden;
}
mark.name {
	background: linear-gradient(270deg, #1cafdb, #b01cdb, #db8b1c);
	background-size: 600% 600%;
    animation: aesthic 8s ease infinite;
	color: white;
}
@keyframes aesthic {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
.linkbar {
	width: 15%;
	min-height: 400px;
	padding: 11px;
	border: 2px solid black;
	margin-bottom: 20px;
	background-color: rgba(108, 122, 137, 0.8);
	position: absolute;
}
.cawntent {
	width: 25%;
	min-height: 300px;
	padding: 8px;
	border: 2px solid white;
	margin-bottom: 20px;
}
.wrangler {
	border: 1px white transparent;
	flex-wrap: wrap;
	display: flex;
	justify-content: center;
}
.test-text {
	border: 1px solid #1c1c1c;
	opacity: 100%;
	margin-top: 2px;
	color: white;
	background-color: #000;
}
.linkbox {
	flex-wrap: wrap;
	border: 1px white transparent;
}
hr {
	height: 1px;
	background-color: white;
	border-color: white;
	width: 60%
}
.button {
	margin-left: 4px;
}