* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Rubik", sans-serif;
	color: var(--text);

	scrollbar-width: thin;
	scrollbar-color: rgba(80, 80, 80, 0.6) transparent;
}

body {
	position: relative;
	min-height: 100vh;
	background: none;
}

body {
	position: relative;
	min-height: 100vh;

	background: radial-gradient(100% 100% at 50% 15%, var(--front) 0%, var(--back) 75%);
	background-repeat: no-repeat;
}

main {
	flex-direction: column;
	justify-content: flex-start;
	padding: 2rem 4rem;
}

h1 {font-size: 2.5rem !important; font-weight: 600 !important; color: var(--title)}
h2 {font-size: 2rem !important; font-weight: 500 !important; color: var(--title)}
h3 {font-size: 1.5rem !important; font-weight: 400 !important; color: var(--title)}
h4 {font-size: 1.2rem !important; font-weight: 400 !important; color: var(--title)}

p {color: var(--text2) !important;}
/*
	Container
*/

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

@media (max-width: 869px) {
	.container {
		padding: 0 15px;
	}
}

.content {
	color: #fff;
	flex-grow: 1;
}

.content > .container {
	display: block;
	padding: 30px;
}

@media (max-width: 869px) {
	.content > .container {
		padding: 15px;
	}
}

.page {
	flex-direction: column;
	justify-content: flex-start;
	padding: 8rem 16rem;
}

/*
	Buttons
*/

.button {
	background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: #fff;
	border-radius: 6px;
	padding: 8px 18px;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(79,140,255,0.08);
	transition: background 0.2s, box-shadow 0.2s;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

/*
	Inputs
*/

.input {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-top: none;
	border-left: none;
	border-right: none;
	border-radius: 2px;
	color: white;
	padding: 4px 8px;
	outline: none;

	box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
	transition: border-color 0.15s ease-in-out;
}

.input:focus {
	outline: none;
	border-bottom-color: var(--primary);
}

/*
	Editor
*/

.ck-editor__main {
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
	border-radius: 2px !important;
	box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.ck-content {
	background: rgba(0, 0, 0, 0.2) !important;
	color: #ffffff !important;
}

.ck-editor__editable {
	background: rgba(0, 0, 0, 0.2) !important;
	color: #ffffff !important;
	min-height: 300px !important;
	border: none !important;
	padding: 4px 8px !important;
}

.ck-toolbar {
	background: rgba(0, 0, 0, 0.3) !important;
	border: none !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.ck-toolbar__separator {
	background-color: rgba(255, 255, 255, 0.1) !important;
}

.ck-button:hover:not(:disabled):not(.ck-button_on) {
	background: rgba(255, 255, 255, 0.1) !important;
}