  
  .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, .7);
    transition: all .4s;
    z-index: 50;
  }
  
  .modal__content {
    border-radius: 4px;
    position: relative;
    max-width: 70%;
    max-height: 80%;
    /* height: 100%; */
    /* background: #fff;
    padding: 1em; */
  }

  .modal__content img{
    max-width: 100%;
    max-height: 100%;
  }

  .modal__close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    text-decoration: none;
  }

  @media only screen and (max-width: 600px) {
    .modal__content {
      max-width: 98%;
      height: auto;
    }
    .modal__close {
      top: 5px;
      right: 10px;
    }
  }
