/*fonts*/
@font-face {
  font-family: "zelda";
  src: url('https://faescape.neocities.org/fonts/zeldadxt.ttf') format("TrueType");
}

@font-face {
  font-family: "simsun";
  src: url("https://faescape.neocities.org/fonts/SIMSUN.ttf") format("TrueType");
}

@font-face {
  font-family: "bitmapgothic";
  src: url("https://faescape.neocities.org/fonts/Bitmgothic.ttf") format("TrueType");
  src: url("https://faescape.neocities.org/fonts/Bitmgothic.woff") format("woff");
}
@font-face {
  font-family: "alagard";
  src: url("https://faescape.neocities.org/fonts/alagard.ttf") format("TrueType");
}
@counter-style swords {
  system: cyclic;
  symbols: "\2694";
  }
/* colour variables (im so sorry)*/

body {
  background: var(--bgcol) var(--bgimg) center top/auto repeat;
  font-family: "simsun";
  font-size: 13px;
  color: black;
  padding: 0px 0px 0px 5px;
  text-shadow: 0px 0px 2px var(--text);
  letter-spacing: 0.5px;
  }
/*text styling*/
p {
  font-family: "simsun";
  font-size: 13px;
  color: black;
  padding: 0px 0px 0px 5px;
  text-shadow: 0px 0px 2px var(--text);
  letter-spacing: 0.5px;
}

i {
  color: var(--italic);
  text-shadow: 0px 0px 2px var(--italic);
}

b {
  color: var(--bold);
  text-shadow: 0px 0px 2px var(--bold);
}

h1 {
  font-family: "simsun";
  font-size: 24px;
  color: white;
  text-shadow: 0px 0px 7px var(--bold);
}

h2 {
  font-family: "simsun";
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0px 0px 2px var(--h2);
  padding: 0px 10px;
  color: var(--h2);
  letter-spacing: 2px;
}

header {
  font-family: "bitmapgothic";
  font-size: 20px;
  color: white;
  text-align: center;
  margin: auto;
  text-shadow: 0px 0px 7px var(--text);
}

footer {
  text-align: center;
  font-family: "simsun";
  font-size: 10px;
  color: white;
  margin: auto;
  margin-top: 10px;
}

body {
  font-family: "simsun";
  font-size: 13px;
}

hr {
  border: 0;
  height: 1px;
  color: var(--accent);
  background: var(--accent);
  font-size: 0;
}

ol {
  border: 1px solid var(--accent);
  width: 150px;
  padding: 5px 0px 5px 30px;
  color: black;
}
ul {
  list-style-type: swords;
  }
ul.nav {
  list-style-type: none;
  padding: 10px 20px;
  }
li.nav {
  padding: 3px 0px;
  }
button {
	box-shadow:inset 0px 1px 0px 0px #e1e5e6;
	background:linear-gradient(to bottom, #ededed 5%, #bab1ba 100%);
	background-color:#ededed;
	border-radius:6px;
	border:1px solid #d6bcd6;
	display:inline-block;
	cursor:pointer;
	color:#3a8a9e;
	font-family:Arial;
	font-size:12px;
	padding:3px 7px;
	text-decoration:none;
	text-shadow:0px 1px 0px #e1e2ed;
}
button:hover {
	background:linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
	background-color:#bab1ba;
}
button:active {
	position:relative;
	top:1px;
}
mark {
  background-color:rgba(105, 202, 195, 0.6);
  color: white;
  padding: 3px;
  }
/* unvisited link */
a:link {
  color: var(--link);
  text-shadow: 0px 0px 7px var(--link);
  transition: 1s ease 0s;
}

/* visited link */
a:visited {
  color: var(--link);
  text-shadow: 0px 0px 7px var(--link);
}

/* mouse over link */
a:hover {
  color: var(--hover);
  text-shadow: 0px 0px 7px var(--hover);
  letter-spacing: 2px;
}

/* selected link */
a:active {
  color: blue;
}
.theme-switcher {
  float: right;
  
  }
.tg {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tg td {
  border: 1px solid var(--accent);
  font-family: "simsun";
  font-size: 14px;
  color: black;
  overflow: hidden;
  padding: 1px 3px;
  word-break: normal;
}

.tg th {
  border: 1px solid var(--accent);
  font-family: "simsun";
  font-size: 14px;
  color: black;
  font-weight: normal;
  overflow: hidden;
  padding: 5px;
  word-break: normal;
}

.tg .tg-0lax {
  text-align: left;
  vertical-align: top;
}
.insertimg {
  width: 150px;
  float: right;
  border-radius:5px;
  }
div.gallery {
  margin: 5px;
  display:inline-block;
  width: 150px;
  transition: 1s ease 0s;
}

div.gallery:hover {
  width:170px;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 5px;
  text-align: center;
  color: black;
  border: 1px solid var(--accent);
}
#container {
  width: 750px;
  margin: auto;
  background-color: var(--background);
  position: relative;
  padding: 10px;
}
#alert {
  position: relative;
  margin: auto;
  border: 1px solid var(--accent);
  background-color: var(--background);
  width: 70%;
  }
#sidebar {
	width:175px;
	height:100%;
	position: fixed;
	padding: 5px;
	top:0;
	left: 225px;
	z-index:1;
	background-color: var(--background);
}
#main {
	width:650px;
	position: absolute;
	top: 0;
	left: 410px;
	background-color: var(--background);
	padding: 10px 5px;
}
#sidetable {
  margin-top: 15px;
  float: right;
  width: 200px;
  border: 1px 0px solid var(--accent);
  background-color: var(--background);
  }
#title {
  background-color: var(--accent);
  padding: 7px;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
  color: white;
  font-weight: bold;
}
#subtitle {
  background-color: var(--accent);
  padding: 3px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: white;
  font-weight: bold;
  }
#quote {
  font-size:18px;
  font-style:italic;
  color: var(--italic);
  font-family: "alagard";
  letter-spacing: 2px;
  text-shadow: none;
  }