.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  /* height: 100%; */
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #141519;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  top: 40px;
  position: relative;
}

.modal-title {
    color: black;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  cursor: pointer;
  top: -25px;
  right: -10px;
  position: relative;
}

.close:hover,
.close:focus {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}

  