.modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  background: rgba(74, 74, 74, 0.8);
  place-items: center;
  display: none;
}

.modal-overlay.show {
  display: grid;
}

.modal-content {
  width: 100%;
  height: 100%;
  background-color: rgba(38, 50, 56, 0.95);
  padding: 2.6rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content__title {
  color: var(--primary-white);
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.25rem;

  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-content__body {
    /*    color: var(--primary-white);*/
    color: var(--primary-dark-gray);
    font-family: "Lato";
    font-style: normal;
    line-height: 2.25rem;
}

.close {
    position:absolute;
    top: 10px;
    right: 10px;
    background-color: lightgray;
}

@media (min-width: 768px) {
  .modal-content {
    height: auto;
    background-color: var(--primary-dark-gray);
    max-width: 25.25rem;
  }

  .modal-content__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
