body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('/gbr/langit.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* Jam Digital */
#jam-digital {
    text-align: center;
    padding: 15px;
    font-size: 1.5em;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu {
  background: #3f2900;
  position: fixed;
  top: 50px; /* Setelah jam dan header */
  width: 90%;
  z-index: 90%;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 10px;
  display: block;
}

.menu a:hover {
  background: #5e02c7;
}

/* Logo di Tengah */
.logo-container {
  margin-top: 180px; /* memberi jarak dari menu */
  text-align: center;
}

.logo {
  max-width: 125px;
  border-radius: 10px;
}

/* Konten */
.konten {
  background: rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  border-radius: 8px;
  color: white;
}

/* Footer */
footer {
  background: rgb(37, 15, 0);
  text-align: center;
  padding: 2px;
  position: relative;
  bottom: 0;
  width: 100%;
}