/*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");
}
@font-face {
	font-family: "Spectral";
	src: url("https://faescape.neocities.org/fonts/Spectral/Spectral-Regular.ttf") format("TrueType");
}
@font-face {
	font-family: "Oceanside Typewriter";
	src: url("https://faescape.neocities.org/fonts/Oceanside-Typewriter.ttf") format("TrueType");
}
* {
  box-sizing: border-box;
}

body {
  background-color: #000000;
  background-image: url("https://faescape.neocities.org/assets/bgs/dark-mosaic.png"); /* background image */
  color: #fff;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: Spectral;
  --sb-track-color: #232e33;
  --sb-thumb-color: #af6b6b;
  --sb-size: 10px;
}

header {
  bottom: 0;
  left: 5%;
  /* sitting to the side of the main body */
  position: fixed;
  /* wont move from bottom of screen */
  font-size: 50px;
}

header>span:first-child:before {
  content: "[ // ";
  /* symbols before header text */
}

header>span:first-child:after {
  content: "]";
  /* symbols after header text */
}
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  width: 40%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: -11px;
  background-color: white;
  border: 4px solid #12aab5;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  right: -10%;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #212121;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #212121;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #212121;
  border-width: 10px 10px 10px 0;
  border-color: transparent #212121 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -11px;
}

/* The actual content */
.content {
  padding: 15px;
  position: relative;
  border-top: 7px solid #12aab5;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* From https://css.glass */
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
  transition: 1s ease 0s;
  text-align: justify;
}

.content h2 {
	text-align: center;
  margin: 0px;
  color: white;
  font-family: simsun;
}
.content h3 {
	text-align: center;
    font-size: 14px;
    color: white;
}
mark {
	background-color: rgba(59, 59, 59, 0.70);
	color: #D6D6D6;
    padding: 6px 4px 6px 5px;
}
.content:hover {
	box-shadow: 0px 1px 10px 4px #12aab5;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }
}