
#main-btn {
  width: 50%;
  height: 50vh;
  font-size: 18pt;

  background-color: #efefef;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  border-radius: 3px;
}

#message-popup-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100vh;
}

#message-popup {
  position: fixed;
  background-color: #feffe6;
  width: 350px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0px 0px 5px darkgray;
}

#message-popup-close-btn {
  width: 150px;
  height: 50px;
  margin-top: 10px;
}

#message-popup-content-wrapper {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translateX(-50%) translateY(-50%);
}

#message-popup-heading {
  margin-top: 0px;
  margin-bottom: 0px;
}

#message-popup-rating {
  margin-top: 0px;
  margin-bottom: 0px;
}

#message-popup-message {
width: max-content;
}