/* The Modal (background) */
.modal {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: rgb(0, 0, 0);
  margin: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Modal Content/Box */
.modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fcfcfc;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 1rem;
  border: 1px solid #888;
  border-radius: 0.3rem;
}

.modal-footer {
  display: flex;
  justify-content: center;
  color: white;
}

/* The Close Button */
.close {
  color: #aaa;
  display: flex;
  justify-content: right;
  font-size: 28px;
  font-weight: bold;
}

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