/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face { font-family: courier; src: url('assets/CourierPrime-Regular.ttf');
}
@font-face { font-family: courier; src: url('assets/CourierPrime-Bold.ttf');
font-weight:bold;
}
@font-face { font-family: courier; src: url('assets/CourierPrime-Italic.ttf');
font-style:italic;
}
@font-face { font-family: courier; src: url('assets/CourierPrime-BoldItalic.ttf');
font-weight:bold;
font-style:italic;
}

.topnav {
	background-color: #afc9c9;
	overflow: hidden;
	display: flex;
	position:sticky;
	align-items: center;
	height:37px;
	top:0;
	width:100vw;
}
a {
	color: #2a1185;
	text-align: center;
	text-decoration: underline double;
	font-size: 17px;
}
a:hover {
	background-color: #0f0f42;
	color: #31e4f5; 
}

.pagearrow{
	display:flex;
	flex-direction:row;
}

.next{
	width:50%;
	font-size:18px;
	text-align:right;
	padding-right:15px;
}

.prev{
	width:50%;
	font-size:18px;
	text-align:left;
	padding-left:15px;
}

.comicpage{
	height:70vh;
	object-fit: contain;
}

html{
background-image:url("assets/pondback.png");
background-repeat:no-repeat;
background-attachment:fixed;
background-position: center;

}
h1 {
	color:white;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	text-align:center;
}
h2 {
	color:white;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	text-align:center;
}
#neocities{
	padding-left: 10px;
}
p {
	font-size:16px;
	padding-top: 10px;
	padding-bottom:10px;
	padding-left:5px;
}
ul{
	padding-left:30px;
}
ol{
	padding-left:30px;
}

* {
	margin: 0;
	padding: 0;
}

body {
  color: black;
  font-family: courier;
  height:100vh;
  width:100vw;
 overflow-x:hidden;
}


.box{
	display:flex;
	flex-direction:column;
	justify-content:center;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

iframe{
	position:absolute;
	top:32%;
	left:2%;
}

#bluespiral{
	position: absolute;
	top:85%;
	left:77%;
	transform: scaleX(3) translate(-50%,-50%);
}
#threestar{
	position: absolute;
	left:24%;
	top:20%;
	transform:translate(-50%,-50%);
}
#bluestar{
	position:absolute;
	left:16%;
	top:65%;
	transform:translate(-50%,-50%);
}
#wahoo{
	position: absolute;
	left:75%;
	top:25%;
	transform: translate(-50%,-50%);
}

.bottomnav {
	background-color: #afc9c9;
	display: flex;
	align-items: center;
	height:37px;
	overflow: hidden;
	width:100vw;
	position:absolute;
	bottom:0;
}
.Footerlink{
	margin-left:10px;
}