html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-image: url('https://files.catbox.moe/66q65a.png');
  background-color: #2d3a80;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 13px;
  color: #fff;
  text-align: justify;
  letter-spacing: 1px;
  overflow-x: hidden;
  transition: background-image 0.5s ease-in-out;
  font-family: 'Courier New', sans-serif;
  cursor: url('https://files.catbox.moe/aj4alq.png'), auto;
}

a {
  color: #8ecae6;
  cursor: url('https://files.catbox.moe/aj4alq.png'), auto;
  text-decoration: none;
}

/* ===== CONTAINER (responsive but keeps your layout feel) ===== */
#container {
  position: relative;
  width: 90%;
  max-width: 735px;
  margin: 72px auto;
  padding: 8px;
}

/* ===== HEADER ===== */
#header {
  height: 150px;
  width: 100%;
  background-image: url('https://files.catbox.moe/ketpa6.png');
  border: 1px solid #230023;
}

/* ===== NAV ===== */
#linkity {
  position: relative;
  line-height: 30px;
  text-align: center;
}

#linkity a {
  width: 120px;
  display: inline-block;
  font-size: 13px;
  margin-right: -3px;
  background-color: #230023;
  color: #fff;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #230023;
  font-style: italic;
}

#linkity a:hover {
  background-color: rgba(35,0,35,0.4);
  border-bottom: 1px solid #fff;
  transition: 0.4s;
}

/* ===== HEADINGS ===== */
h1 {
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  font-family: times;
  display: block;
  border-bottom: 1px solid #a481b0;
  letter-spacing: 2px;
  margin: -2px 0 0 -4px;
  background-color: #230023;
}

h2 {
  color: #fff;
}

/* ===== BLOG CONTENT ===== */
#blog-post {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* images scale properly */
#blog-post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 6px;
}

/* code blocks */
#blog-post pre {
  overflow-x: auto;
  background: #222;
  padding: 10px;
  border-radius: 6px;
}

/* ===== CONTENT BOX ===== */
#boxx {
  font-weight: bold;
  width: 100%;
  height: auto;
  padding: 8px;
  border: 2px solid white;
  background-color: rgba(35,0,35,0.6);
  margin-bottom: 4px;
  text-align: left;
}

/* optional blog split styles */
.blogl, .blogr {
  font-weight: bold;
  display: flex;
  width: 100%;
  padding: 8px;
  border: 3px solid white;
  margin-bottom: 4px;
  text-align: left;
}

.blogr {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
  height: 1px;
}

::-webkit-scrollbar-thumb {
  background-color: purple;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* ===== FOOTER ===== */
#footer {
  position: relative;
  text-align: center;
  margin-top: 15px;
}

#footer a:hover {
  color: red;
}

/* ===== FONT ===== */
@font-face {
  font-family: "Courier New";
  src: url('https://files.catbox.moe/ghhu4c.TTF') format("truetype");
}