#feedback-popup-background {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
}

#feedback-popup-container {
  height: auto;
  width: 50%;
  background-color: white;
  border: none;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

#feedback-popup-container button:-moz-focusring {
  outline: none;
}

#feedback-popup-container button {
  margin: 20px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: darkgray;
}

#feedback-popup-container button:hover,
#feedback-popup-container button:focus {
  cursor: pointer;
  color: white;
}

#feedback-popup-container p {
  text-align: center;
}
