/*================Font import================ */
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');


/* ================Main Body================ */
/*essentially the base of the page, this is where you change the background and base elements*/
body {
	font-family: courier new,Courier,monospace;
	font-size: 12px;
	background-image:
			linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%),
			url("../../img/background.png");
	background-repeat: no-repeat, repeat;
	background-position: top, top;
	background-attachment: fixed;
	background-color: #280a23;
	color: #000;
	z-index: 1;
}

#main {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 915px;
	max-width: 915px;
	margin: 0 auto;
	padding: 0 5px 5px;
}

/* ================Containers================ */
/*these are all your different parts split into boxes*/

#bannerhead,
nav {
	width: 920px;
	padding: 4px;
}

#comicpage {
	width: 1100px;
	padding: 150px 25px 25px 25px;
}

#bannerhead {
	background-color: #383838b2;
}

nav { 
	background-color: #383838b2;
	margin-top: 4px;
}

#comicpage {
	background-color: #383838b2;
}

#arrows {
	margin-top: 4px;
}

/* ================banner================ */
/*This is for your header, the top of the page.This changes things for the banner*/

.banner {
	height: 150px;
	background-repeat: no-repeat;
	background-position: center;
}

/*Change your banner picture here*/
header .banner {
	background-image: url(../../img/banner.png);
}

/* ================Nav Bar================ */
/*This is for the navigation bar*/

nav {
	font-family: "Alef";
	font-weight: 400;
	font-size: 20px;
	height: 47px;
	text-transform: uppercase;
	color: #b695a4;
	background-image: url(../../img/menu_general.png);
	background-repeat: no-repeat;
	background-position: center;
}

/*Change your nav text colour here. text decoration means no link underline*/
nav a {
	color: #ffd900 !important; 
	text-decoration: none !important;
}

.navcontainer {
	height: 47px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

/*this is for the little heart divider*/
nav .heart {
	display: none; /*this hides the heart, if you want it back, uncomment this (dont forget the bit at the end)
	width: 16px;
	height: 16px;
	background-image: url(../../img/candyheart.png);
	background-repeat: no-repeat;
	background-position: center; */
}

/* ================Comic Body================ */
/*This is where most of the compic style goes, its for everything. the title, the image, the words ect*/

#container {
	font-weight: 700;
	font-size: 14px;
}

#slide {
	padding-top: 5px;
	display: table;
	width: 915px;
	max-width: 915px;
	word-wrap: break-word;
	word-break: break-word;
	background-color: transparent;
}

#command {
	display: none;
}

#content {
	text-align: center;
}

#content img {
	max-width: 915px;
}

#content img.major,
#content video.major,
#content iframe.major,
#content canvas.major,
#content object.major,
#content ruffle-object.major {
	margin: 0 -25px;
}

#slide .spoiler img {
	max-width: 100%;
}

/* ================Page Navigators================ */
/*This is for your page links at the bottom of the panel*/

#footlinks {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-top: 2px;
}

.arrowbox,
#next {
	height: 40px;
	width: 90px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 90px 40px;
}

#next > span > div > a > span{
	display: none;
}

#leftarrows,
#rightarrows {
	width: 200px;
}

#leftarrows {
	display: flex;
	justify-content: space-between;
}

#rightarrows {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

/*Change your arrow images here*/
#firstarrow {
	background-image: url(../../img/first.png);
}

#backarrow {
	background-image: url(../../img/goback.png);
}

#nextarrow {
	background-image: url(../../img/next.png);
}

#lastarrow {
	background-image: url(../../img/last.png);
}

/*grey arrows*/
.p1 #firstarrow {
	background-image: url(../../img/firstgrey.png);
}

.p1 #backarrow {
	background-image: url(../../img/gobackgrey.png);
}

#next {
	background-image: url(../../img/nextgrey.png);

}

/*this must be edited manually, just change the number after .p */
.p25 #lastarrow {
	background-image: url(../../img/lastgrey.png);
}

/* ================Footer================ */
/*This is for the credits at the bottom of the page*/

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #cf0000c6;

}

footer a {
	color: #cf0000c6 !important;
}

/* ================Spoiler================ */
/*This is for the spoiler function*/

.spoiler {
	border: 1px dashed gray;
	padding: 1px;
}

.spoiler > div:last-child {
	margin: 12px 5%;
	padding: 3px;
	text-align: left;
}

.spoiler.closed > div:last-child {
	display: none;
}

#slide img {
	margin: 0 -25px;
}

/* ================Misc================ */
/*Some other stuff*/
iframe {
	border: none;
}

.timestamp {
	font-size: 12px;
	color: #8c8c8c;
}