html {
	overflow: hidden;
}
html, body {
	margin: 0px;
	width: 100%;
	height: 100%;
	background-color: #1C1C1C;
	font-family: 'Oswald', sans-serif;
}
body {
	overflow: auto;
	background-image: url(purplestars.png), linear-gradient(rgb(52, 0, 80), rgb(78, 0, 120));
	background-repeat: repeat;
	background-position: center;
	cursor: var(--global-cursor, inherit);
}
img#banner {
	position: absolute;
	right: 16px;
	bottom: 0px;
	width: 20%;
}

a.element {
	text-decoration: none;
}
a.element.disabled {
	cursor: not-allowed;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}
.channel-mention {
	background-color: #7289DA34;
	color: #7D96EF;
}
.channel-mention:hover {
	background-color: #7D96EF;
	color: #FFFFFF;
}

.container {
	display: flex;
	opacity: 0.9;
	margin: auto;
	padding: 8px;
	width: 200px;
	border-radius: 8px;
	flex-flow: column nowrap;
	flex-grow: 0.5;
	background-color: #404040;
	color: #E0E0E0;
	font-size: calc(10px + 0.4vw);
}
.element {
	display: flex;
	flex-direction: column;
	margin: 4px;
	padding: 4px 6px;
	border-radius: 4px;
	background-color: #606060;
	color: inherit;
}
.element.disabled {
	background-color: #806060;
}

.inline-box {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}
.inline-heading {
	margin: 4px auto;
	padding: 8px 5%;
	border-radius: 16px;
	background-color: #505050;
	font-size: 2em;
}
.disabled .inline-heading {
	background-color: #605050;
}
.inline {
	flex-grow: 1;
	flex-basis: 0px;
}
.inline.element {
	display: initial;
}

textarea, button, input, select {
	font-family: inherit;
	font-size: inherit;
}
textarea, input, select {
	border: none;
	resize: none;
	background-color: inherit;
	color: inherit;
	cursor: inherit;
}
.input-highlight {
	padding: 2px;
	border-radius: 4px;
	background-color: #707070;
	color: #F0F0F0;
}
button.footer, a.footer, input.footer {
	margin: 4px 16px;
	border: none;
	padding: 4px 3%;
	flex-grow: 0;
	background-color: #505050;
	cursor: var(--global-cursor, pointer);
}

button:disabled, input:disabled {
	cursor: not-allowed;
}
