body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(0, 1, 32);
    color: white;
  }

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: blink 10s infinite alternate;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    90% { opacity: 425; }
}

  /* Rotating Logo */
.logo {
    position: absolute;
    margin-top: 50px;
    left: 50%;

}
.logo-container {
    position: absolute;
    top: 40px; /* Jarak dari atas */
    left: 45%;
    text-align: center;
}

.logo {
    max-width: 150px; /* Ukuran maksimum logo */
    height: auto;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

  /* Kontainer menu */
  .menu-container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    gap: 40px;
  }

  .column {
    line-height: 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  button {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #1aff06cc;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  button:hover {
    background-color: #0059ff;
  }

  audio {
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /* Footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 0;
}

/* Footer tetap di bawah */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
}

footer a:hover {
    text-decoration: underline;
}
