:root {
	--text-color: #000000;
	--text-alt: #ffffff;
	--text-alt-shadow: #000000;
	--page-background: #f0f0f0;
	--accent-color: #f368e0;
	--dark-gradient-start: #444444;
	--dark-gradient-stop: #282828;
}
html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
}
.nav-container {
	background: linear-gradient(var(--dark-gradient-start),var(--dark-gradient-stop));
}
.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.column {
	width: 70%;
	max-width: 50em;
	margin: 0 auto;
	z-index: 1;
}
nav ul li {
	display: inline-block;
	list-style-type: none;
	padding-left: 5px;
	padding-right: 5px;
}
nav ul li a{
	color: var(--text-alt);
	text-shadow: 0px -1px 0px var(--text-alt-shadow);
	text-decoration: none;
}
.hero {
	padding: 0px;
	margin: 0px;
	width: 100%;
	min-height: 15em;
	background: linear-gradient(45deg,rgba(255, 255, 255, 0) 19%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0) 50%),linear-gradient(45deg,rgb(243, 104, 224) 40%, rgb(245, 147, 232) 100%);
	display: flex;
	justify-content: center;
	flex-direction: column;
	box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.10), 
inset 0px -5px 5px 0px rgba(0, 0, 0, 0.10);
	position: relative;
}
.hero-home:before {
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	top: 0px;
	left: 0px;
	background-image: url('/static/irispanel-home-optimised.png');
	background-size: 400px;
	background-repeat: no-repeat;
	background-position: bottom -30px right 20%;
}
.hero .hero-text {
	color: var(--text-alt);
	text-shadow: 0px 0px 10px rgba(1,1,1,0.25);
}
/*button {
	border: 1px solid #e05cce;
	background: linear-gradient(#f47fe5,#f368e0);
	padding: 7px 15px 7px 15px;
	border-radius: 5px;
	color: white;
	font-weight: bolder;
	text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}*/
button {
	border: none;
	border-radius: 5px;
	padding: 7px 15px 7px 15px;
	text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
	color: white;
	font-weight: bolder;

	transition: 0.2s;
	background-color: rgba(0,0,0,0.2);
}
button:hover {
	transition: 0.2s;
	background-color: rgba(0,0,0,0.3);
}
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #7f7f7f;
	padding-bottom: 20px;
}
pre {
	border: 1px solid #999999;
	border-radius: 3px;
	box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
	padding: 6px;
	margin-bottom: 10px;
}
.news-item a {
	text-decoration: none;
	color: #0000ff;
}
.news-item p,small {
	color: #7f7f7f;
}
.news-item:last-child hr{
	display: none;
}
@media (max-width: 800px) {
	.hero-home:before{
		display: none;
	}
}