html {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body, div, iframe {
    margin: 0px;
    padding: 0px;
    height: 100%;
    border: none;
}

#bg-frame {
	position: fixed;
    display: block;
    width: 100%;
    border: none;
    overflow-y: auto;
	overflow-x: hidden;
	z-index: -1;
}

body{
	display: flex;
	flex-direction: column;
}

/* Main content */

.content{
	flex: 1;
	display: flex;
	padding: 10px 20px;
}

.content > div{
	display: flex;
	flex-direction: column;
}

.content > div > *{
	margin: 10px 0;
	backdrop-filter: blur(5px);
	border-radius: 5px;
}

.content > .left > #discord{
	opacity: .85;
	transition: cubic-bezier(0.075, 0.82, 0.165, 1) 250ms;
	height: 400px;
}

.content > .left > #discord:hover{
	opacity: 1;
}

/* panels for content */

.panel{
	flex: 1;
	backdrop-filter: blur(5px);
	border-radius: 5px;
	width: 100%;
	background-color: rgba(5, 5, 38, .8);
	transition: cubic-bezier(0.075, 0.82, 0.165, 1) 250ms;
	overflow: hidden;
}

.panel > .header{
	color: #FF9D00;
	font-size: 20px;
	width: 100%;
	height: 30px;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	background-color: rgba(32, 7, 38, .3);
}

.vote-link{
	width: 100%;
	height: 40px;
	margin: 5px 0px;
	box-sizing: border-box;
	padding: 0px 10px;
	font-size: 20px;
}

.vote-link > a{
	display: block;
	text-decoration: none;
	color: white;
	width: 100%;
	height: 40px;
	background-color: rgba(255,255,255,.1);
	transition: cubic-bezier(0.075, 0.82, 0.165, 1) 250ms;
}

.vote-link:hover > a{
	background-color: #FF6A33;
}

.vote-link > a > img{
	height: 40px;
	width: auto;
	float: left;
}

.vote-link > a > span{
	float: left;
	padding: 5px;
}

/* Footer */

.footer{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 38px;
	width: 100vw;
	font-size: 20px;
	background-color: rgba(5, 5, 38, .8);
	backdrop-filter: blur(5px);
	color: #FF9D00;
	padding: 7px 20px;
	font-weight: bold;
	font-family: 'Raleway';
}

.footer .credits{
	color: #FF6A33;
	font-weight: normal;
}

.footer > div{
	width: 50%;
	float: left;
}

.footer > div:nth-of-type(2){
	text-align: right;
}

#build-credits{
	opacity: 0;
}

#build-credits > #name, #build-credits > #player{
	color: #FF6A33;
	font-weight: normal;
}