/* FONTS */
@font-face {
  font-family: "Anonymous Pro";
  src: url("/fonts/AnonymousPro.ttf");
}

@font-face {
  font-family: "Rubik 80s Fade";
  src: url("/fonts/Rubik80sFade.ttf");
}

@font-face {
  font-family: "SperryPC";
  src: url("/fonts/SperryPC.woff");
}

@font-face {
  font-family: "ToshibaSAT";
  src: url("/fonts/ToshibaSAT.woff");
}

/* HOUSEKEEPING */
body {
  --black: #0f0f0f;
  --white: #e3d1e6;
  --accent1: #b475bd;
  --accent2: #d97ae6;
  --accent3: #9a65a1;
  --border-radius: 2px;
  --font1: 'ToshibaSAT', monospace;
  --font2: 'SperryPC', monospace;
  --font3: 'Anonymous Pro', sans-serif;
  background-color: #0f0f0f;
  color: var(--white);
  font-family: var(--font1);
  font-size: 16px;
  line-height: 150%;
  background-image: url('/data/images/stars.png');
  background-attachment: fixed;
  padding: 0;
  margin: 0;
  position: relative;
  height: 100%;
}

a {
  font-family: var(--font2);
  color: var(--accent1);
}

b {
  color: var(--accent2);
  font-weight: normal;
  font-family: var(--font1);
}

ul {
  list-style-type: none;
}

ul li:before {
  content: "✦ ";
  color: var(--accent2);
}

li p {
  margin: 0px 20px 0px 20px;
}

h2 {
  font-family: var(--font3);
  border: 1px solid var(--accent1);
  padding: 5px 10px;
  font-size: 20px;
  font-weight: normal;
  border-radius: var(--border-radius);
  box-shadow: 3px 3px 0 var(--accent3);
  line-height: 150%;
  width: fit-content;
  margin: 30px auto 25px auto;
}

h3 {
  font-family: var(--font3);
  font-size: 20px;
  line-height: 150%;
  margin: 0;
}

h3 a {
  font-family: var(--font3);
}

/* SITE WRAPPER */
#site-wrapper {
  background: rgba(0, 0, 0, 0.85);
  width: 750px;
  height: 100vh;
  padding: 0 60px;
  margin: auto;
  overflow: auto;
  -webkit-mask-image:
    linear-gradient(to right, black 0%, black 95%, transparent 100%),
    linear-gradient(to left, black 0%, black 95%, transparent 100%);
  mask-image:
    linear-gradient(to right, black 0%, black 95%, transparent 100%),
    linear-gradient(to left, black 0%, black 95%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* SITE TITLE */
#site-title {
  margin: 20px 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  font-weight: normal;
}

#site-title a {
  font-family: "Rubik 80s Fade";
  font-size: 90px;
  line-height: 100%;
  color: var(--white);
  text-shadow: 0 0 155px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* Makes the "shadow" effect */
.site-title-text::before {
  position: absolute;
  z-index: -1;
  transition: 220ms linear 0s;
  color: var(--accent1);
  margin: 3px;
  text-shadow: 0 0 5px var(--accent3);
}

#site-title:hover .site-title-text::before {
  text-shadow: 4px 4px 5px var(--accent1);
}

.site-title-text::before {
  content: "Beetlegooze" / "";
}

/* HEADER LINKS */
#site-links {
  text-align: center;
  padding: 10px 0 0 0;
}

#site-links a {
  margin: 10px;
}

/* CONTENT WRAPPER */
#content-wrapper {
  flex: 1;
}