.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  position: relative;
  /* border-radius: 8px; */
  margin: 10px;
}

#closeModal {
  font: 1.5rem "Montserrat";
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 10px;
  border-style: none;
  background-color: #fff;
  cursor: pointer;
}
