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

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal__body {
  padding: 15px;
}
.modal__body p {
  text-align: center;
  margin: 2% 0%;
}

.modal__header, .modal__footer {
  padding: 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
}

.modal__footer button {
  color: #fff;
  background-color: #19253d;
  text-decoration: none;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

@media only screen and (max-width: 1000px) {
  .modal .modal__content {
    width: 60%;
  }
}/*# sourceMappingURL=modal.css.map */