 /* Popup Modal Styles */
 .popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .popup-modal .popup-content {
    margin: 8rem auto 0 auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }

  .close-button {
    position: absolute;
    top: 120px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  @media screen and (max-width: 400px) {
    .popup-modal .popup-content{
      max-width: 100%;
      max-height: 100%;
      margin-top: 14rem;
    }


    .popup-modal  .close-button {
      top: 87px;
      right: 11px;
    
    }
  }