/*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");
}
/* colour variables */
:root {
  --blue: #85d9e6;
  --cyan: #69cac3;
  --white: #faf6f3;
  --green: #7fd7a3;
  --lime: #cee491;
  --pink: #da68a8;
  --purple: #9398cd;
}
.title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 0px 0px 0px 5px;
  text-shadow: 0px 0px 2px #445a78;
}

.content {
  font-size: 13px;
  text-shadow: 0px 0px 2px #445a78;
  margin: auto;
}
.date {
  font-size: 12px;
  padding: 0px 10px 0px 15px;
  text-shadow: 0px 0px 2px #445a78;
  position: relative;
  z-index: 1;
}
/*text styling*/
p {
  font-family: "simsun";
  font-size: 13px;
  padding: 0px 5px;
  text-shadow: 0px 0px 2px #445a78;
}

body {
  font-family: "simsun";
  font-size: 13px;
  text-shadow: 0px 0px 2px #445a78;
  background: #ffffff url('https://faescape.neocities.org/assets/bgs/grid.png');
}
footer {
  text-align: center;
  font-family: "simsun";
  font-size: 8px;
  color: grey;
  margin: auto 5px;
}
i {
  color: var(--pink);
  text-shadow: 0px 0px 2px var(--pink);
}

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

h1 {
  font-family: "bitmapgothic";
  font-size: 30px;
  text-align: center;
  color: var(--white);
  text-shadow: 0px 0px 7px #da68a8;
}

h2 {
  font-family: "simsun";
  font-size: 18px;
  font-weight: bold;
  padding: 0px 10px;
}

     
 /* unvisited link */
a:link {
  color: var(--pink);
  text-shadow: 0px 0px 7px #c571ed;
  transition: 1s ease 0s;
}

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

/* mouse over link */
a:hover {
  color: var(--cyan);
  text-shadow: 0px 0px 7px var(--cyan);
  letter-spacing: 2px;
  
}
hr {
	border-top: 5px solid #fda5ae;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
	position: relative;
	bottom: 11px;
	z-index: 0;
}