/* 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." */

/* Typography & Atmosphere */
body {
  background-color: #0b0c10;
  color: #e0e0e0;
  font-family: 'Cascadia';
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 2em;
}

/* Header Sigil */
header {
  text-align: center;
  padding: 1em 0;
  font-size: 2em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffe2b0;
}

/* Link Styling: glyphic shimmer */
a {
  color: #b2f2ff;
  text-decoration: none;
  border-bottom: 1px dotted #b2f2ff;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffd6e0;
  border-bottom: 1px solid #ffd6e0;
}

/* Fragment Box Styling */
.fragment {
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5em;
  margin-bottom: 1em;
  box-shadow: 0 0 5px rgba(255,255,255,0.1);
}

/* Glyphic Divider */
hr {
  border: none;
  border-top: 1px dashed #666;
  margin: 2em 0;
}

/* Footer Sigil */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 4em;