#userPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--s-4);
  border-radius: 0.3rem;
  z-index: 1000;
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
}
/*
#userPopup:after {
  background-color: rgba(0, 0, 0, 0.85);
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
*/

#userPopup img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
