/* --- Font Setup (Bulletproof Syntax) --- */
@font-face {
  font-family: 'UnifrakturCook';
  src: local('UnifrakturCook'),
       url('UnifrakturCook-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --- Base Body Styling --- */
body {
  margin: 0;
  padding: 20px;
  background-color: #111;
  color: #eee;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
}

/* --- Headings --- */
h1, h2 {
  font-family: 'UnifrakturCook', cursive;
}

h1 {
  font-size: 3em;
  text-align: center;
  margin: 20px 0;
  color: #5c0000;
  text-shadow: 2px 2px black;
}

h2.post-title {
  font-size: 2em;
  color: #440859;
  margin: 5px 0;
  text-shadow: 1px 1px black;
}

/* --- Blog post container --- */
.blog-post {
  border-bottom: 2px solid #444;
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Post date styling --- */
.post-date {
  font-family: monospace;
  color: #888;
  font-size: 0.9em;
  margin-bottom: 5px;
}

/* --- Post content --- */
.blog-post p {
  margin: 10px 0;
  line-height: 1.6;
}

/* --- Links in posts --- */
.blog-post a {
  color: #a10000;
  text-decoration: underline;
}
.blog-post a:hover {
  color: #d42a2a;
  text-decoration: none;
}

/* --- Centered text for intro --- */
.centered {
  text-align: center;
}

/* --- Navigation Buttons (Right Side) --- */
.top-right-links {
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: right;
  z-index: 1000;
}

/* Page buttons style */
.top-right-links .btn {
  display: inline-block;
  background-color: #111;
  color: #b20000;
  font-family: "Old English Text MT", gothic, serif;
  text-decoration: none;
  padding: 6px 12px;
  margin: 0 0 5px 5px; /* spacing adjusted for right side */
  border: 1px solid #b20000;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.top-right-links .btn:hover {
  background-color: #b20000;
  color: #111;
  border-color: #111;
}

/* --- Responsive adjustments --- */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  h1 {
    font-size: 2em;
  }
  h2.post-title {
    font-size: 1.5em;
  }
  .blog-post {
    padding: 15px 0;
  }
  .top-right-links {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }
  .top-right-links .btn {
    display: block;
    margin: 5px auto;
  }
}
