body {
  font-family: sans-serif;
  margin: 0;
  background: #f7f7f7;
  padding-bottom: 80px;
}

header {
  background: #222;
  color: #fff;
  padding: 10px 20px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.menu a:hover {
  text-decoration: underline;
}

footer {
  background: #eee;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
  position: relative;
  margin-top: 50px;
}
/* MENU BAR STYLE */
nav {
    background: #111;
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    nav a {
        color: #eee;
        text-decoration: none;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }

        nav a:hover {
            background: #444;
            color: #fff;
        }

        /* Optional: highlight current/active page */
        nav a.active {
            background: #00c3ff;
            color: #000;
            font-weight: 700;
        }
