/* 1. FULL PAGE BACKGROUND */
body {
  margin: 0;
  padding: 0;
  background: #000 url('https://i.ibb.co/bj72x9MR/mindless-self-indulgence-msi.webp') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-heading {
  color: #4CBB17 !important; /* Forces the bright green */
  font-size: 3rem;
  text-align: center;
  margin-top: 50px;
  text-transform: lowercase;
  
  /* This shadow is what keeps it from blending into the art */
  text-shadow: 3px 3px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000;
  
  font-family: 'Comic Sans MS', cursive; /* Or whichever font you prefer */
}
/* 2. THE 2x2 GRID */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
  width: 95%;
  max-width: 900px; 
  margin: 30px auto;
}

/* 3. BLOG BOX STYLES */
.blog-box {
  height: 420px;
  overflow-y: auto;
  border: 3px solid black;
  border-radius: 8px;
  padding: 15px;
  color: white;
  text-shadow: 2px 2px 4px black;
  background-color: rgba(0, 0, 0, 0.5); /* Original greyish clear */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scrollbar-width: none;
}

/* 4. BIGGER HEADINGS & SMALLER LINKS */
.blog-title {
  font-size: 1.5rem; /* BUMPED UP */
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  width: 100%;
  padding-bottom: 5px;
}

.box-subheading {
  color: #4CBB17; /* MSI Green */
  font-size: 1.3rem; /* BUMPED UP */
  margin: 15px 0 8px 0;
  font-weight: bold;
}

.blog-box p {
  font-size: 0.9rem;
  margin: 5px 0;
}

/* SMALL LINKS */
.blog-box a {
  color: #b19cd9;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.8rem; /* STAYS SMALL */
  padding: 2px 0;
  display: block;
}

.blog-box a:hover {
  color: #4CBB17;
  text-decoration: underline;
}

.blog-box::-webkit-scrollbar {
  display: none;
}