/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@property --rich-black {
  syntax: "<color>";
  inherits: false;
  initial-value: #050517ff;
}

@font-face {
  font-family: Gothic;
  src: url(GothicCornerCaps.ttf);
}

@font-face {
  font-family: Nymphette;
  src: url(Nymphette.ttf);
}

body {
  background-color:  rgb(255, 237, 188);
  color: var(--rich-black);
}

p {
  font-size: large;
}

.section-break-dingbats {
  font-family: Nymphette;
  text-align: center;
  font-size: xx-large;
}

.main-grid {
  display: grid;
  grid-template-areas:
  "header" 
  "content"
  "footer";
  grid-template-rows: 7em auto 5em;
  min-height: 100vh;
}

#header {
 grid-area: header;
 text-align: center;
}

#footer {
  grid-area: footer;
  text-align: center;
}

#content {
  grid-area: content;
  margin: 0em 5em;
}

.body-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}

.bordered-item {
  border: 10px;
  border-style: outset;
  border-color: rgb(212, 196, 152);
  margin: 1em;
}

.cover-image {
  max-width: 100%;
  min-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: 50% 50%;
}

.cover-caption {
  text-align: center;
}

.mote-heading {
  text-align: center;
}

.mote-body::first-letter {
  float: inline-start;
  font-family: Gothic;
  initial-letter: 2.6;
  margin-right: 1px;
}

.azinax-magic {
  font-weight: bold;
  color: #4B0101;
  text-shadow: 
  0 0 5px rgb(250, 255, 231),
  0 0 7px rgb(250, 255, 231),
  0 0 12px rgb(250, 255, 231),
  0 0 15px rgb(250, 255, 231);
}

.micaiah-magic {
  font-weight: bold;
  color: rgb(226, 232, 238);
  text-shadow: 
  0 0 5px darkslategray,
  0 0 7px darkslategray,
  0 0 12px darkslategray,
  0 0 15px darkslategray;
}

.cursed-scroll-effect {
  font-weight: bold;
  font-size: larger;
  color: rgb(231, 255, 254);
  text-shadow:
  0 0 5px rgb(59, 59, 59),
  0 0 7px rgb(59, 59, 59),
  0 0 12px rgb(59, 59, 59),
  0 0 15px rgb(231, 255, 254);
  animation: glitch 8s step-end infinite;
}


@keyframes glitch {
  20% {
      transform: translate(-1px, -2px);
  }
  40% {
      transform: translate(1px, 1px);
  }
  60% {
      transform: translate(-2px, 0px);
  }
  80% {
      transform: translate(-1px, 2px);
  }
}
/* CSS HEX */
/*--xiketic: #050517ff;*/
/*--electric-blue: #6efafbff;*/
/*--viridian: #498467ff;*/
/*--deep-champagne: #ffcf99ff;*/
/*--rose-pink: #ff57bbff;*/
