div.logo {
	padding: 0;
}

ul.menu__list {
	justify-content: center;
}

body {
	background-color: #020000;
	background-image: url("/resources/siteback.jpg");
	background-position: left top;
	background-size: auto;
	background-repeat: repeat;
	background-attachment: scroll;
}

div.container--outer {
	box-shadow: 0 0 32px black;
}

.wrapper {
	/* Warmer colored background for the content area of the page */
	background-color: rgb(240,240,235)
}

/* Don't show red color on menu bar items */
.menu__item:hover {
	background-color: unset;
}

.menu__item--active {
	background-color: unset;
}

/* Reduce width of sidebar compared to theme default */
.sidebar {
	flex: 1 0 25%;
}

h1.post__title {
	text-align: center
}

/* Remove bold red styling from hyperlinks  */
.content  a, 
main.list a {
	text-decoration: underline;
	font-weight: unset;
	color: black;
}

/*  And add the color back for hover */
.content  a:hover, 
main.list a:hover {
	color: #e22d30;
}

/* No underline for post titles on frontpage */
.post__title, .post__title > * {
	text-decoration: none !important;
}