:root {
	--green1: #003300; /* Darkest */
	--green2: #006633;
	--green3: #009933;
	--green4: #00CC33; /* THE Green */
	--green5: #00f91a;
	--green6: #D6FFD8;
	--green7: #F1FCF2; /* Lightest */
	
	--borderSize: 0.1rem;
	--borderCorner: 0.2rem;
	
	--textShadow: 0.07rem;
	--headerShadow: 0.2rem;
	
	--windowCorner: 0.3rem;
}

@font-face {
		font-family: "Edd's Font"; 
		src: url("font/Edd's Font.ttf") format("truetype");
}
@font-face {
		font-family: "Eastwood"; 
		src: url("font/Eastwood.ttf") format("truetype");
}

html, body {
	background-image: url("img/greenbg.png");
	background-attachment: fixed;
	
	color: var(--green1);
	font-family: "Edd's Font";
	font-size: 18px;
}
a {
	color: var(--green3);
	text-decoration-style: wavy;
}
a:hover {
	color: var(--green4);
}
blockquote {
	margin: 0.3rem 0rem;
	padding-left: 0.4rem;
	background-color: var(--green6);
	border-left: 0.2rem solid var(--green4);
}
h1, h2, h3, h4, h5, h6 {
	margin: 0.3rem 0;
	padding: 0 0.35rem;
	background-color: var(--green4);
	border-radius: var(--windowCorner) var(--windowCorner) 0 0;
	
	color: var(--green7);
}
h1, h2, h3 {
	font-family: "Eastwood";
	font-weight: normal;
	letter-spacing: 0.1rem;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child {
	margin-top: 0;
}
hr {
	color: var(--green5);
}
nav {
	margin-bottom: 0.4rem;
	background-image: url("img/greenbg.png");
	background-position: 0 -8px;
	font-size: 1.2rem;
	text-align: center;
	position: sticky;
	top: 0;
	margin-top: -8px;
}
nav a, nav li {
	padding: 0.2rem;
	
	border-radius: var(--borderCorner);
	
	color: var(--green7);
	font-weight: bold;
	text-decoration: none;
}
nav a:hover, nav li:hover {
	color: white;
	background-color: var(--green5);
	text-shadow: var(--textShadow) var(--textShadow) 0 var(--green4),
				calc(-1 * var(--textShadow)) var(--textShadow) 0 var(--green4),
				calc(-1 * var(--textShadow)) calc(-1 * var(--textShadow)) 0 var(--green4),
				var(--textShadow) calc(-1 * var(--textShadow)) 0 var(--green4);
}
nav>h1 {
	margin-bottom: 0;
	
	background-color: transparent;
	
	color: var(--green4);
	font-size: clamp(2rem, 10vw, 4rem);
	-webkit-text-stroke: 0.1rem var(--green7);
	text-shadow: var(--headerShadow) var(--headerShadow) 0 var(--green2),
				calc(-1 * var(--headerShadow)) var(--headerShadow) 0 var(--green2),
				calc(-1 * var(--headerShadow)) calc(-1 * var(--headerShadow)) 0 var(--green2),
				var(--headerShadow) calc(-1 * var(--headerShadow)) 0 var(--green2);
}
nav>ul {
	padding: 0.2rem;
	margin: 0;
	
	background-color: var(--green4);
	border-radius: var(--windowCorner) var(--windowCorner) 0 0;
}
nav>ul>li {
	display: inline-block;
	margin:
}
p, ul {
	margin: 0.3rem 0;
}
small {
	font-size: 0.8rem;
}
s {
	opacity: 0.5;
}
ul {
	padding-left: 2.5rem;
	list-style: square;
}
li:only-child {
	padding: 0;
}
li:first-child {
	padding-bottom: 0.1rem;
}
li:not(:first-child) {
	padding: 0.1rem 0;
}
li:last-child {
	padding-bottom: 0;
}

#comic img {
	padding-left: 0.4rem;
	max-width: 550px;
	max-height: 220px;
	
	height: 100%;
	width: 100%;
	
	float: right;
	
	border-radius: var(--borderCorner);
	
	aspect-ratio: 55/22;
}
#chara {
	flex-basis: 600px;
}
#chara .flex>.flex.column {
	flex-basis: 300px;
}
#chara img {
	float: left;
}
.detail img {
	padding-right: 0.5rem;
}
.flex {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: center;
	gap: 0.8rem;
}
.flex.column {
	flex-flow: column;
	align-items: stretch;
}
.flex>div, .flex>a {
	flex-grow: 1;
	flex-shrink: 1;
}
.info>div {
	flex-basis: 400px;
}
.info, #top {
	margin: 0 10%;
	padding: 0.5rem;
	background-color: var(--green7);
	border-radius: var(--windowCorner);
}
@media (max-width: 1280px) {
	.info, #top	{
		margin: 0 5%;
	}
}
@media (max-width: 960px) {
	.info, #top	{
		margin: 0 2%;
	}
}
@media (max-width: 480px) {
	.info, #top	{
		margin: 0 0;
	}
}
#question>div {
	flex-basis: 400px;
}
.video iframe {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 225px;
	aspect-ratio: 16/9;
	border: 0;
	border-radius: var(--windowCorner);
	flex-basis: 300px;
}