#popup img{
  width: 100px;
  margin-top: -50px;

  box-shadow:0 2px 5px rgba(0, 0, 0, 0.2) ;
}
#popup h2{
  color: #000;
  font-size: 38px;
  font-weight: 500;
  margin:30px 0 10px;
}
#popup button{
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background:#1ba27a ;
  color: #fff;
  border:0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow:0 5px 5px rgba(0, 0, 0, 0.2) ;
  transition: 0s;
}
/* Örnek CSS kodu */
#popup {
  display: none; /* Başlangıçta gizli olacak */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  padding: 0 30px 30px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 6px;
  z-index: 999; /* Diğer elemanların üstünde olacak */
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5; /* Arka planın şeffaflığı */
  z-index: 998; /* Popup'ın altında olacak */
  display: none; /* Başlangıçta gizli olacak */
}
