@font-face {
	font-family: 'punk';
	src: url('/public/css/Punktype.ttf');
}

@font-face {
	font-family: 'road';
	src: url('/public/css/TransportMedium.ttf');
}

@font-face {
	font-family: 'arial-rounded';
	src: url('/public/css/Arial\ Rounded\ MT\ Regular.ttf');
}

@font-face {
	font-family: 'arial-rounded\ bold';
	src: url('/public/css/Arial\ Rounded\ MT\ Bold.ttf');
}

html {
	background: rgb(82, 19, 123);
	min-height: 100vh;
	background: linear-gradient(180deg,rgb(156, 55, 223) 0%, rgb(81, 34, 112) 100%);
	font-family: Arial,Helvetica,sans-serif;
	color: #eee;
	font-size: 12px;
}

body {
	margin: 0;
}

a {
	text-decoration: none;
	color: #ffa634;
}

a:hover {
	text-decoration: underline;
	color: #ffc63f;
}

@keyframes bgScroll {
	0% {
		background-position : 0px 0px;
	}
	100% {
		background-position : -100% 0px;
	}
}

@keyframes bgScroll2 {
	0% {
		background-position : 0px 0px;
	}
	100% {
		background-position : 100% 0px;
	}
}

#header {
	display:block;
	width:100%;
	height: 30px;
	background-image:url("/public/images/header/navbar_new.jpg");
	animation: bgScroll2 50s linear infinite;
	background-size: contain;
	border-bottom: 5px solid black;
	text-align: center;
}


#submenu {
	display:block;
	width:100%;
	background: #171717;
	border-bottom: 5px solid black;
	text-align: center;
	color: white;
	font-size: 13px;
}

#submenu > #container {
	margin: 0 auto; width: fit-content;
}

#submenu > #container a {
	color:white;
	display: inline-block;
	padding: 3px 10px;
}

#submenu > #container a:hover {
	color:white;
	background: #222;
	background: linear-gradient(0deg,#222 0%, #444 100%);
	font-weight: bold;
}

#header #links {
	position:relative;
	padding-top: 6px;
}

.header-link {
	color: white;
	padding: 1px 1.5em;
	background: rgb(0,0,0);
	border: 2px solid black;
	font-family: punk;
	font-size: 16px;
}

.header-link:hover {
	text-decoration: underline;
	background: #222;
	background: linear-gradient(0deg,#222 0%, #444 100%);
	color: white;
}

#header #logo a {
	padding-left: 5px;
	width: 120px;
	height: 30px;
	display: inline-block;
	background: linear-gradient(90deg,rgb(191, 181, 0) 0%, rgba(173, 139, 15, 0.76) 50%, rgba(0, 0, 0, 0) 100%);
	
}

#header #logo a img {
	height: 30px;
}

#header #logo a:hover img, #header #logo a img:hover {
	background: #fff4;
}

#header #container {
	width: 970px;
	margin: 0 auto;
}

#billboard {
	position: absolute;
	background-image: url('/public/images/header/billboard.png');
	right: 20px;
	top: 26px;
	width:229px;
	height: 145px;
}

#billboard #container {
	position: absolute;
	text-align: left;
	margin: 8px;
	width: 212px;
	height: 99px;
	top: 26px;
}

#billboard hr {
	margin: 0px;margin-bottom: 5px; color: white;
}

#billboard table {
	width: 100%;font-family: road;font-weight: bold;
}

#billboard table a {
	color: white;
	padding: 5px;
	white-space: nowrap;
	overflow:auto;
	text-overflow: ellipsis;
	display: block;
	max-width:60px;
}

#billboard table a:hover {
	border: 1px solid white;
	margin: -1px;
}

#billboard #container #profile td {
	text-align: center;
}

#billboard #container #profile a {
	padding: 0px;
	max-width: unset;
}

#billboard #container #profile a:hover {
	margin: 0px;
	border: 0px;
}

#footer {
	line-height: 1.428;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	/*background: rgb(82, 19, 123);*/
	border-top: 1px solid rgb(171, 70, 238);
}

#footer #container {
	width: 510px;
	margin: 0 auto;
}

#footer #container .legalese {
	float:right;
	display: block;
	border-left: 1px solid white;
	padding: 10px;
	margin-top: -10px;
}

#footer #container p {
	margin: 0px;
}

#body {
	background: url("/public/images/bkg.png?v=1") top center repeat-x #32043f;
	min-height: calc(100vh - 200px); /* testing */
	animation: bgScroll 50s linear infinite;
}

#body #container {
	width: 970px;
	margin: 0px auto;
	padding: 15px 0px;
}

.box {
	border: 2px solid rgb(141, 29, 216);
	padding: 5px;
	color: white;
	background: linear-gradient(0deg,rgb(26, 12, 35) 0%, rgb(73, 34, 101) 100%);
}

.box.rounded {
	border: 2px solid rgb(141, 29, 216);
	padding: 5px;
	color: white;
	background: linear-gradient(0deg,rgb(26, 12, 35) 0%, rgb(73, 34, 101) 100%);
	border-radius: 8px;
}

.button {
	border: 2px solid rgb(141, 29, 216);
	font-size: 14px;
	padding: 5px 15px;
	font-weight: bold;
	background: linear-gradient(180deg,rgb(156, 55, 223) 0%, rgb(81, 34, 112) 100%);
	color: white;
	cursor: pointer;
}

.button:hover {
	filter: brightness(1.15);
	color: white;
}