#popupmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popupmodal-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  /*max-width: 350px;*/
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.popupmodal-img {
  max-width: 100%;
  border-radius: 8px;
}

.popupmodal-btn {
  display: inline-block;
  background: #000000;
  /*color: #fff;*/
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 6px;
}

.popupmodal-btn:hover {
  background: #ffffff;
}
