html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.image-container {
  position: relative;
  width: 50vw;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  z-index: 0;
}

#passkey-container {
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: none;
}

#passkey-container {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#passkey {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: black;
  color: white;
}

button {
  padding: 10px;
  font-size: 16px;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#result-message {
  font-size: 14px;
  font-style: italic;
  color: red;
  margin-top: 10px;
}

.audio-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#audio-player {
  width: 300px; /* Adjust width as needed */
}
