body {
  margin: 0;
  font-family: georgia, serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Background image */
  background: url('amen.png') no-repeat center center fixed;
  background-size: cover;
}

/* Overlay background (keeps the modal readable) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

/* Hidden state */
.overlay.hide {
  display: none;
}

/* Message box */
.message-box {
  background: #fff;
  width: 300px;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  animation: popIn 0.6s ease;
}

.message-box h2 {
  margin: 0 0 15px;
  font-size: 1.6rem;
  color: black;
}

.message-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: black;
}

.buttons {
  display: flex;
  justify-content: space-around;
}

button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#okBtn {
  background: #c97b63;
  color: #fff;
}

#okBtn:hover {
  background: #a85f4b;
}

#noBtn {
  background: #ccc;
  color: #333;
}

#noBtn:hover {
  background: #aaa;
}

/* Animations */
@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}