body{
	background-color: black;
	background-image: url("../images/comicsbg.png");
	background-size: 100%;
	background-attachment: fixed;
	background-position: cover;
	background-repeat: no-repeat;
}

.container {
	display: grid;
	grid-gap: 5px;
	position: absolute;
	margin-top: 30px;
	margin-left: 150px;
	margin-right: auto;
	grid-template:
		"sidebar main"
		"footer footer"
		/ 500px 1fr;
}

aside { grid-area: sidebar;
		color: white;
		background-color: black;
		padding: 30px 10px;
		height: 600px;
		width: 300px;
		overflow-y: auto;
		border-image: url(../images/border.PNG) 30 round;
}

main { grid-area: main;
		color: white;
		font-size: 20px;
		background-color: transparent;
		padding: 40px 40px;
		width: 980px;
		height: 705px;
		text-align: center;
		overflow-x: auto;
		overflow-y: auto;
}

footer { grid-area: footer;
		color: white;
		font-size: 17px;
		background-color: black;
		padding: 3px 0px;
		width: 180px;
		height: 20px;
		text-align: center;
		overflow-x: auto;
		overflow-y: auto;
		border-style: solid;
		border-image: url(../images/Border.PNG) 30 round;
}

.sideborder {
		border: 20px solid transparent;
		padding: 0px;
		height: 660px;
		width: 319px;
		border-image: url(../images/Border.PNG) 30 round;
}
.mainborder {
		border: 20px solid transparent;
		height: 810px;
		padding: 0px;
		border-image: url(../images/Border.PNG) 30 round;
}

.hiaside {
	top-margin: 3px;
	font-size: 18px;
	color: white;
	text-align: center;
}

.Thumbnails {
	display: flex;
	flex-wrap: wrap;
}

.Thumbnails div {
  width: 25%;
  margin: 5px;
  border: 5px solid;
  position: relative;
  overflow: hidden;
}

.Thumbnails div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Thumbnails div span {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	background: #2E2A24;
	color: white;
	text-align: center;
	padding: 1px 1px;
	font-size: 15px;
	opacity: 0;
	transform: translateY(100px);
	transition: transform 0.4s ease, opacity 0.5s ease;
}
.Thumbnails div:hover span {
	opacity: 1;
	transform: none;
}


.backbutton {
	display: block;
	position: fixed;
	width: 130px;
	padding: 10px;
	left: 0px;
	bottom: 20px;
}

.backbutton:hover {
	content: url("../images/dbackbutton2.gif");
	display: block;
	position: fixed;
}

button {
	background-color: transparent;
	border: none;
	padding: 0px;
	box-shadow: none;
	height: 100%
}

a:link {
  color: white;
  text-decoration: none;
}

a:hover {
  color: red;
}
a:visited {
  color: white;
  text-decoration: none;
}
