body {
	background-image: url("images/starry.gif");
	color: #dddddd;
	font-family: normal x-small verdana,arial,helvetica,sans-serif;
    font-size: 14px;
	animation: scrollBackground 15s linear infinite;
}

@keyframes scrollBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -280px -155px;
  }
}

a, h1, h2 {
	color: #89ACFB;
}

a:visited {
	color: #AC7ACA;
}

sup {
	vertical-align: top;
	font-size: xx-small;
}

#header, #left, #footer, #right, #middle {
	border: 1px solid Indigo;
	margin: 1px;
	background-color: #111111;
}

#wrapper {
    display: grid;
    grid-template-columns: 10em auto 10em;
	background-color: black;
    grid-template-areas: 
        "header header header"
        "left   middle right"
        "footer footer footer";
}

.image-wrapper {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-bottom: 50px;
}

.image-caption {
	color: red;
	font-size: 24px;
}

.image {
	max-width: 350px;
	padding: 10px;
}

@media screen and (max-width:600px) {
	#wrapper {
		display: grid;
		grid-template-columns: auto;
		grid-template-areas: 
			"header"
			"middle"
			"footer";
	}
	
	body {
		margin: 0px;
	}
	
	/* Style the navigation menu */
	.topnav-mobile {
	  overflow: hidden;
	  background-color: #333;
	  position: relative;
	}

	/* Hide the links inside the navigation menu (except for logo/home) */
	.topnav-mobile #myLinks {
	  display: none;
	}

	/* Style navigation menu links */
	.topnav-mobile a {
	  color: red;
	  padding: 14px 16px;
	  text-decoration: none;
	  font-size: 17px;
	  display: block;
	}

	/* Style the hamburger menu */
	.topnav-mobile a.icon {
	  color: white;
	  background: black;
	  display: block;
	  position: absolute;
	  right: 0;
	  top: 0;
	}

	/* Add a grey background color on mouse-over */
	.topnav-mobile a:hover {
	  background-color: #ddd;
	  color: black;
	}

	/* Style the active link (or home/logo) */
	.active {
	  background-color: black;
	  text-align: center;
	}
	
	.topnav-desktop {
		display: none;
	}
	
	#right, #left {
		display: none;
	}
}

@media screen and (min-width:600px) {
	.topnav-mobile {
		display: none;
	}
	
	.topnav-desktop {
		display:flex;
		justify-content:center;
		align-items:center;
		color: red;
	}
	
	#wrapper {
		width: 80%;
		margin: auto;
	}
}

#content-header {
	display:flex;
	justify-content:center;
	align-items:center;
	color: blue;
	text-align: center;
}

#content-body {
	margin:10px;
}

#gallery {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

#footer {
	text-align: center;
	padding: 5px 0px;
}

#last-modified {
	text-align: center;
	font-size: 11px;
	color: WhiteSmoke;
}

.menu-list {
	list-style-type: "★";
    padding: 5px;
	margin-left: 12px;
}

.menu-list > li {
	padding-left: 5px;
}

.post-header {
	background-color: indigo;
	padding: 6px;
	display: flex;
	justify-content: space-between;
}

.post-header-text-wrapper {
	display: inline;
	display:flex;
	justify-content:flex-end;
	align-items:center;
}

.post-header-date-wrapper {
	display: inline-block;
    float: right;
	display:flex;
	justify-content:flex-end;
	align-items:center;
}

.post-header-text {
    font-size: 20px;
    font-weight: bold;
}

.blog-post {
	margin: 0px 5%;
}

.post-read-more-wrapper {
	padding: 0px 10px 10px;
}

.post-title-link {
	color: white;
}