<!DOCTYPE html>
<html>
<head>
  <title>Bands</title>

  <style>
    body {
      background-color: black;
      color: black;
      font-family: Arial, Helvetica, sans-serif;
      margin: 0;
    }

    a {
      color: #00ffff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    #container {
      display: flex;
    }

    #sidebar {
      width: 180px;
      padding: 10px;
      border-right: 1px solid #333;
    }

    #sidebar a {
      display: block;
      margin: 6px 0;
      color: orange;
    }

    #content {
      flex: 1;
      padding: 20px;
    }

  #logo {
  position: absolute;
  top: 10px;
  left: 10px;
}

#logo img {
  width: 80px; /* smaller */
  height: auto;
  cursor: pointer;
  transition: 0.2s;
}

#logo img:hover {
  transform: scale(1.08);
  filter: brightness(1.3) contrast(1.2);
}


    .box {
      border: 1px solid #555;
      padding: 10px;
      margin: 20px 0;
      background-color: #111;
    }
    .counter {
  color: lime;
  font-size: 14px;
  margin-top: 10px;
}

#counter {
  display: inline-block;
  margin-left: 5px;
}

.digit {
  display: inline-block;
  background: #e6e6e6;
  color: blue;
  font-weight: bold;
  font-family: monospace;
  padding: 4px 6px;
  margin-right: 2px;
  border: 1px solid #999;
}
  </style>
</head>

<body>

<div id="logo">
  <img src="images/logo.png">
</div>

<div id="container">

  <!-- SIDEBAR -->
  <div id="sidebar">
    <a href="index.html">Reports</a>
    <a href="news.html">News</a>
    <a href="bands.html">Bands</a>
    <a href="guestbook.html">Guestbook</a>
  </div>

  <!-- CONTENT -->
  <div id="content">

    <div class="box">
      <p><b>LOCAL BANDS</b></p>

      <p>
        Camaro<br>
        Spirit of Vengeance<br>
        Tashme<br>
        Street Justice<br>
        Purity Culture
      </p>
    </div>

    <div class="box">
      <p><b>NEW / ACTIVE</b></p>

      <p>
        More bands forming constantly. Check flyers, ask around, and show up.
      </p>
    </div>

  </div>
</div>

</body>
</html>