.npp-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1002; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }

img.showcase{
    border-radius: 50px;
}

img.showcase:hover{
    transform: scale(1.1);
    cursor: pointer;
  }

#img01{
    max-width: 80%;
    max-height: 80%;
}

.verthoriz-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.npp-modal-content{
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    transition: 0.3s;
    transform: scale(1.5);
  }
  
  .close-btn:hover,
  .close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
    transform: scale(1.6);
  }

  .under-title-desc{
    margin-bottom: 10px;
  }
  .under-title-desc p{
    cursor: default;
  }