
@font-face {
	font-family: 'short-stack';
	src: url(ShortStack-Regular.ttf) format('truetype');
}

body {
	font-family: short-stack;
	background-image: url('../image/background.png');
}

/* Icons at top right of page */
#top-bar img {
	width: 80px;
	margin-right: 20px;
	float: right;

}

/* Website title box */
#title {
	display: block;
	width: 300px;
	text-align: center;
	border: solid black 5px;
	background-color: white;
	padding: 5px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	margin-top: 50px;
	text-decoration: none;
	color: black;
}

/* Jump to latest issue */
.jump {
	width: 200px;
	text-align: center;
	border: solid black 5px;
	background-color: white;
	padding: 2px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	margin-top: 10px;
}

/* Container for each comic issue */
.comic {
	position: relative;
	width: 600px;
	background-color: #fffda7;
	border: 10px solid black;
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

.comic img {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.comic h2 {
	margin-left: 10px;
	margin-top: 5px;
	font-size: 50px;
}

.date {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 5px;
	color: grey;
	font-family: Aerial;
}

/* Navigation buttons (forward page and backward page) */

.nav_buttons {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

