p {
  margin-top: 0;
}

.modal-container {
  position: fixed;
  background-color: #fff;
  left: 50%;
  padding: 20px;
  border-radius: 5px;

  transform: translate(-50%, -1000%);
  transition: transform 200ms ease-out;
}

#item-modal-title {
  text-align: center;
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-color);
}

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

.modal:target:before {
  display: block;
}

.modal:target .modal-container {
  top: 15%;
  transform: translate(-50%, 0%);
}

.modal-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  margin-top: 0.5rem;
}