body {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
	background-image: url("/images/mars_horizon_gradient.png");
	color: #CCCCCC;
	font-size: 20px;
}

b {
	color: #FFFFFF;
}

a {
	color: #9999FF;
}

a:visited {
	color: inherit;
}

h1 {
    color: #FFFFFF;
    font-size: 30px;
	margin-top: 0;
	margin-bottom: 5px;
	border-bottom: 4px dotted #CCCCCC;
}

h1.column-title {
	border-bottom: 0;
	text-align: center;
	font-size: 50px;
	text-shadow: 0 0 15px #000000;
}

h2 {
    border-bottom: 1px dotted #aaaaaa;
    color: #FFFFFF;
    font-size: 20px;
}

div.responsive-flex-container {
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: space-evenly;
	flex-direction: row;
}

div.responsive-flex-item {
	width: 900px;
	padding: 8px;
}

div.single-flex-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	/*width: 100%;*/
	/*margin: auto;*/
	padding: 8px;
}

div.column-entry {
	display: flex;
	position: relative;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 20px;
	background-color: #202050;
	overflow: hidden;
}
div.column-text {
	max-width: 1000px;
	border-radius: 20px;
	margin-bottom: 20px;
	background-color: #202050;
	padding: 10px;
}

a.entry-link {
	position: absolute;
	width: 100%;
	height: 100%;
}
img.entry-image {
	width: 40%;
	object-fit: cover;
	display: block;
}
div.entry-text {
	width: 60%;
	padding: 10px;
}

a.navlink {
	background-color: #CCCCFF;
	padding: 10px 20px;
	border-radius: 20px;
	color: #333333;
}

#navlink-box {
	margin-bottom: 20px;
	position: sticky;
	top: 10px;
	z-index: 1000;
}

/*Responsive block for skinny screens*/
/*(900+2*8)*2+2*8*/
@media (max-width: 1848px) {
	div.responsive-flex-container {
		flex-direction: column;
		align-items: center;
	}
}