  
   
    .modal {
     position: fixed;
     top: 0; left: 0; right: 0; bottom: 0;
     background: rgba(0,0,0,0.6);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 1000;
    }

    /* Modal content box */
    .modal-content {
     background: #fff;
     padding: 20px 20px;
     border-radius: 12px;
     max-width: 400px;
     text-align: center;
     box-shadow: 0 6px 20px rgba(0,0,0,0.25);
     position: relative;
     animation: fadeIn 0.3s ease-in-out;
     color: #002;
    }
    
     .modal-content .title{
      position: absolute;
     top: 6px;
     left: 40px;    
     font-size: 16px;
     background: #fff;
     color: #002;
    }
    
    .modal-content .caption{
     background: #fff;
     color: #000;
     font-size: 14px;
     margin-top:30px;
     text-align: justify;   /* justify text */
       
    }

    /* Close button */
    .close {
     position: absolute;
     top: -1px;
     right: 7px;
     font-size: 24px;
     text-decoration: none;
     color: #8d0c0c;
     cursor: pointer;
   }
   .close:hover { color: #ff4444; }
     
   
    /* Show modal on target */
    .modal:target {
      display: flex;
    }

    /* Small animation */
    @keyframes fadeIn {
     from { opacity: 0; transform: scale(0.95); }
     to { opacity: 1; transform: scale(1); }
    }


    /* Responsive */
    @media (max-width: 600px) {
     .skills-list li {
       flex-direction: column;
       align-items: center;
       text-align: center;
     }

     .app-icon {position:relative; top:15px; margin-bottom: 8px; }
     .skill-content{
       margin: auto;
      font-size: 1.1rem;
      color: #111;
      text-shadow: 0px 0px 5px rgb(51, 50, 50);}

  
}