

/* =========================
   RESET / GLOBAL
   ========================= */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Georgia, serif;

  min-height: 100vh;
  overflow-x: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* force desktop layout everywhere */
  min-width: 1200px;
}

/* =========================
   HEADINGS
   ========================= */
h1 {
  width: 1000px;
  padding: 20px;
  margin: 0 auto;
  text-align: justify;
  color: purple;
}

h2 { color: green; }
h3 { color: orange; }

/* =========================
   PARAGRAPHS
   ========================= */
p {
  width: 1000px;
  padding: 5px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   BISHABANNER.GIF
   ========================= */
img.bishabanner {
  display: block;
  width: 1200px;
  margin: 20px auto;
}

/* =========================
   INTRO PARAGRAPHS CONTAINER
   ========================= */
.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 1200px;
  padding: 20px;
  margin-bottom: 1rem;
}

.intro-container p {
  width: 1000px;
  margin: 0.7em auto;
}

/* =========================
   BUTTON GRID (DESKTOP-LOCKED)
   ========================= */
.button-grid {
  display: grid;
  grid-template-columns: repeat(5, 120px);
  gap: 25px;

  justify-content: center;
  justify-items: center;

  width: 1100px;
  margin: 20px auto;
}

/* =========================
   BUTTON IMAGES
   ========================= */
.button-grid img {
  display: block;
  width: 120px;
  height: 50px;
}

/* =========================
   GLOW EFFECT
   ========================= */
.glow-border img {
  border: 2px solid transparent;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glow-border:hover img {
  transform: scale(1.05);
  box-shadow:
    0 0 4px  #3f4f2f,
    0 0 10px #4b5320,
    0 0 18px #5a6b2e,
    0 0 28px rgba(90, 107, 46, 0.6);
  border-color: #4b5320;
}

/* =========================
   BISHA.GIF
   ========================= */
img.bisha {
  width: 40px;
  height: auto;
  display: block;
  margin: 20px auto;
}

/* =========================
   CONTENT BELOW COOKIE POLICY
   ========================= */
.content {
  margin: 40px auto;
  font-size: ;
  line-height: 1.7;
  text-align: center;
  width: 800px;
}








hr {
  border: none;
  height: 2px;
  background-color: purple;
  width: 1000px;
  margin: 40px auto;
}













































































































































