<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>לוח מודעות</title>
<link rel="icon" href="./pics/nz.png" />
<style>
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0; /* רקע בהיר לקריאה */
    margin: 0;
    padding: 0;
  }

  .header {
    padding: 20px;
    text-align: center;
    background: #1abc9c;
    color: white;
    font-size: 50px;
  }

  .menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 3000;
    font-size: 22px;
    background: #111;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    background: #1f2937;
    padding-top: 70px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
  }

  .side-menu.open {
    transform: translateX(0);
  }

  .side-menu a {
    display: block;
    color: white;
    padding: 14px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
  }

  .side-menu a:hover {
    background: #374151;
  }

  main {
    padding: 20px;
  }

  .post {
    background: white;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  img {
    max-width: 100%;
    display: block;
    margin: auto;
  }
</style>
</head>
<body>

<button class="menu-btn" onclick="toggleMenu()">☰</button>

<div class="header">All the wars happening right now</div>

<main>
  <div class="post">
    <h3>Mozambique Islamic State Insurgency</h3>
    <p>About 8 years<br>2017 → insurgency began<br>2018–2024 → attacks continued<br>Dec 2025 → intensified again</p>
  </div>

  <div class="post">
    <h2>Thailand–Cambodia</h2>
    About 3–4 weeks
  </div>

  <div class="post">
    <iframe src="tom.html" width="100%" height="400px" frameborder="0"></iframe>
  </div>

  <div class="post">
    <h2>Russia vs Ukraine</h2>
    3 years and 10 months
    <img src="./pics/7718a6d8-4edd-46e6-a233-7b9b2a3442a2.png" />
  </div>

  <div class="post">
    <h1>Israel–Gaza war<br>About 2 years and 2 months</h1>
  </div>
</main>

<nav id="sideMenu" class="side-menu">
  <a href="index.html">page one</a>
  <a href="p2.html">page two</a>
  <a href="p3.html">page three</a>
  <a href="p4.html">page four</a>
  <a href="p5.html">page five</a>
  <a href="clock.html">clock</a>
</nav>

<script>
function toggleMenu() {
  document.getElementById("sideMenu").classList.toggle("open");
}
</script>

</body>
</html>
