body {
	margin: 0;
	padding: 2em 0;
	font-family: 'Open Sans', sans-serif;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	font-size: 13pt;
	line-height: 15pt;
}

html::-webkit-scrollbar {
	display: none;
}

header{
	position: fixed;
	top: 0;
	width: 100%;
	background: white;
}


	body{
		background: linear-gradient(to right top, #ffc130 50%, #f7f7f7 50%);
		background-size: 100% calc(100% - 100vh + 4px);
		background-repeat: no-repeat;
	}

	body:before{
		content:'';
		position: fixed;
		top: 3px;
		bottom: 0;
		width: 100%;
		z-index: -1;
		background: white;
	}



.articles,
.templates {
	width: 45%;
}

div {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5em;
}

h2 {
	font-size: 1.8em;
	padding: 0;
	margin: 0 0 1em;
}

a {
	font-size: 15pt;
	line-height: 17pt;
	display: inline-block;

	/*color: #fec221;*/
	color: #ffc130;

}

a:hover {
	color: #ff8819;

}

span {
	display: inline-block;
	color: #808080;
	font-style: italic;
}

@media all and (max-width: 767px) {
	.articles,
	.templates {
		width: 90%;
	}


	body{
		background: none;
	}
}