.modal {
  display: none;
  justify-content: center;
  align-items: center;

  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}

.modal .content {
  position: relative;
  background-color: #272727;
  margin: auto;
  width: fit-content;
  transform: scale(0);
  min-width: calc(50% - 10rem);
  max-width: calc(50% - 10rem);
  border-radius: 1rem;
}

.modal .content .header {
  padding: 1.5rem;
  color: white;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.modal .content .header .close {
  cursor: pointer;
}

.modal .content .header .close:hover {
  color: red;
}

.modal .content .divider {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid #3f3f3f;
}

.modal .content .body {
  padding: 1rem;
  color: white;
}