:root {
	--text-color: #F8F6F6;
	--highlight-color: #F5D061;
	--second-highlight-color: #CF4647;
	--bg-color: #2A363B;

	--transition-fast: 0.2s;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/font/Roboto.ttf');
}

body {
	margin: 0;
	padding: 0;

	height: 100vh;

	display: grid;
	place-items: center; 

	font-family: 'Roboto';
	
	color: var(--text-color);
	background: var(--bg-color);

	transition: all var(--transition-fast) ease-in;
}

hr {
	border: 2px solid var(--text-color);
	border-radius: 10px;
	width: 100%;
}

a {
	color: var(--text-color);
	text-decoration: none;
}

a.title {
	font-size: 40pt;
	letter-spacing: 5pt;
	margin: 20px;
	transition: all var(--transition-fast) ease-in;
}

div.content-container {
	display: flex;
	flex-flow: column;
	width: 70%;
	height: 100%;
}

a.article {
	width: 100%;
	margin: 10px;
	margin-bottom: 20px;
	transition: all var(--transition-fast) ease-in;
}

a.article h1.themes, h2.title, p.text {
	margin: 0;
}

a.article p.text {
	text-align: justify;
}

h1.article-themes {
	text-align: center;
	font-size: 40pt;
	font-weight: bold;
	margin-bottom: 5px;
}

h2.article-title {
	text-align: center;
	font-size: 20pt;
	font-weight: bold;
	margin-top: 5px;
}

div.article-text p {
	text-align: justify;
	text-indent: 1cm;
	font-size: 14pt;
	margin: 3pt;
}

div.article-text a {
	text-decoration: underline;
}

div.article-text a:hover {
	color: var(--highlight-color);
	transition: all var(--transition-fast) ease-in;
}

div.article-text a:active {
	color: var(--second-highlight-color);
	transition: all var(--transition-fast) ease-in;
}


div.article-text img {
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

div.article-text blockquote {
	margin-left: 5px;
	margin-right: 0;
	padding-left: 35px;
	border-left: 5px solid var(--text-color);
}

div.message {
	width: 100%;
	text-align: justify;
}

div.message h2.username a {
	font-style: italic;
	font-size: 10pt;
}

form {
	display: grid;
	place-items: center;
	align-items: center;
}

form label {
	font-size: 25pt;
}

form textarea {
	width: 100%;
	min-height: 20pt;
}

input, form textarea {
	background: none;
	border: none;
	border-bottom: 3px solid var(--text-color);
	padding: 10px;
	margin-bottom: 40px;
	color: var(--text-color);
	font-size: 20pt;
	font-family: "Roboto";
	transition: all var(--transition-fast) ease-in;
}

input[type=submit] {
	background: var(--text-color);
	border: none;
	border-radius: 10px;
	color: var(--bg-color);
}

input[type=submit]:hover {
	background: var(--highlight-color);
	transition: all var(--transition-fast) ease-in;
}

input[type=submit]:active {
	background: var(--second-highlight-color);
	transition: all var(--transition-fast) ease-in;
}

div.full-centring {
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	justify-content: center;
}

.clickable:hover {
	color: var(--highlight-color);
	border-color: var(--highlight-color);
	fill: var(--highlight-color);
	transition: all var(--transition-fast) ease-in;
}

.clickable:active {
	color: var(--second-highlight-color);
	border-color: var(--highlight-color);
	fill: var(--second-highlight-color);
	transition: all var(--transition-fast) ease-in;
}

.icon {
	fill: var(--text-color);
	width: 14pt;
	height: 14pt;
}

#auth-navigation {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 14pt;
}

#theme-button {
	width: 48px;
	height: 48px;
	position: fixed;
	left: 20px;
	bottom: 20px;
	transition: all var(--transition-fast) ease-in;
}

#notifications-button {
	width: 48px;
	height: 48px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	transition: all var(--transition-fast) ease-in;
}

