#sitetitle	{
	position: absolute;
	top: 50.3%; left: 50.2%;
	line-height: 85%;
	font-family: 'Knewave', sans-serif;
	text-align: center;
	font-size: 350%;
    color: #2FD1FF;
	padding: 20px;
	-webkit-transform: translate(-50%, -50%);  
    transform: translate(-50%, -50%);
	mix-blend-mode: multiply;
}

#titlebar	{
	position: absolute;
	top: 25%;
	width: 100%;
	height: 125px;
	background-color: #484848;
	mix-blend-mode: multiply;

}
	
#titlebartext {
	user-select: none;
	position: absolute;
	top: 50%; left: 50%;
	line-height: 85%;
	font-family: 'Knewave', sans-serif;
	text-align: center;
	font-size: 350%;
	background-image: url("images/header_bg.gif");
	background-repeat: repeat;
	padding: 20px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
	-webkit-transform: translate(-50%, -50%);  
    transform: translate(-50%, -50%);
	
}


#header {
	position: relative;
	height: 250px;
	background-color: #f7e8d2;
	background-image: url("images/header_bg.gif");
	background-position: bottom;
	
}

#navbar {
	position: relative;
	top: 255px;
	font-family: 'Urbanist', sans-serif;
	font-size: 27px;
    color: #000000;

}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background-color: #f3f3f3;
  text-align: center;

}

li {
  display: inline-block;

}

li a {
  display: block;
  color: #666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #ddd;
}


#body_text {
	font-family: 'Arial';
	position: relative;
	top: 100px;
	font-size: 16px;
    color: black;
	background-color: white;

}

table {
	width: 100%;
	table-layout: fixed;

}

td {
	vertical-align: middle;
	max-width: 100%;

}

.twrap {
	width: 100%;
	overflow: auto;

}

img {
	width: 100%;
	max-width: 800px;

}

img.comic {
	width: 100%;
	max-width: 800px;
	padding-right: 10px;
	padding-bottom: 30px;

}

img.thumbnail {
	width: 100%;
	max-width: 300px;
	padding-bottom: 30px;
	padding-right:40px;

	
}

a {
	text-decoration: none;
	color: #b0b0b0;

}

a:visited {
	color: #b0b0b0;
	
}

a:hover {
	color: #0092cc;
	
}

#footer {
	position: relative;
	bottom: 0;
	width: 100%;
	height: 50px;
	margin-top: 40px;
	background-color: white;
	text-align: center;
}

body {
	background-color: white;
	
}

.tdimage {
	text-align: center;
	
}


.hvrbox,
.hvrbox * {
	box-sizing: border-box;
}
.hvrbox {
	position: relative;
	display: inline-block;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.hvrbox img {
	max-width: 100%;
}
.hvrbox .hvrbox-layer_bottom {
	display: block;
	max-width: 400px;
}
.hvrbox .hvrbox-layer_top {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 15px;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
	opacity: 1;
}
.hvrbox .hvrbox-text {
	text-align: center;
	font-size: 18px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.hvrbox .hvrbox-text_mobile {
	font-size: 15px;
	border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
	border-top: 1px solid rgba(179, 179, 179, 0.7);
	margin-top: 5px;
	padding-top: 2px;
	display: none;
}
.hvrbox.active .hvrbox-text_mobile {
	display: block;
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #0092cc;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(1px, 4vw, 1.5rem);
  padding: 15px;
  width: 100%;
  max-width: 250px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;

}

.button:hover {
	background-color: #b0b0b0;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

input.myinput {
   width: 40%;
   height: 38px;
   color: hsl(0, 0, 20);
   padding: 10px;
   border-radius: 5px;
   font-size: 15px;

}

select.myselect {
   width: 40%;
   height: 50px;
   color: hsl(0, 0, 20);
   padding: 10px;
   border-radius: 5px;
   font-size: 15px;
   text-align: center;
}

select.myselect option {
	color:white;
	padding:10px;
	text-align: center;
	
	
}

textarea.mytextarea {
	width:40%;
	height:100px;
	
}