.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: left;
}

.modal-content {
  background: #fff;
  max-width: 600px;
  padding: 20px;
  border-radius: 4px;
  text-align:left
}

.modal-content p {
  color: #000;
}