body{
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
}
.section{
  width: 80%;
  margin: auto;
}

/* class => header starts */
.header{
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.img-logo{
  width: 70px;
  height: 70px;
}
.menu{
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 25px;
}
.menu li{
  display: inline;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15pt;
}
.home a{
  text-decoration: none;
  color: black;
}

/* class => header ends */

.page-heading{
    text-align: center;
    font-size: 24px;
    color: rgb(146, 146, 146);
    margin-bottom: 30px;
}

.list{
    list-style: none;
    padding: 0;
}

.list-wrapper{
    width: 40%;
    margin: auto;
}

.list-item{
    display: flex;
    justify-content:space-between;
    /* background-color: coral; */
    padding: 10px;
    /* margin-bottom: 5px; */
    border-bottom: 1px solid #ccc;
}

.list-item:hover{
    background-color: #ccc;
    border-radius: 5px;
    transition: 0.2s;
    transform: scale(1.1,1.2);
    cursor: pointer;
}

.modal-image{
    text-align: center;
}
.modal-image img{
    width: 50%;
    height: auto;
    text-align: center;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in pla ce */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    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.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    transform: scale(1);
    box-sizing: border-box;
}

.modal-content p{
    font-size: 14px;
    opacity: 1;
}

.modal-content h5{
    margin: 5px 0;
    opacity: 1;
}

.modal-content h4{
    margin: 15px 0;
}

.close {
    position: absolute;
    color: white;
    font-size: 34px;
    font-weight: bold;
    top: 10;
    right: 10;
  }
  
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    padding: 2px 16px;
    background-color: #988ef1;
    color: white;
  }
  
  .modal-body {padding: 2px 16px;}
  
  .modal-footer {
    padding: 2px 5px;
    background-color: #5cb85c;
    color: white;
  }

  @keyframes popup {
    0% {
      transform: scale(0.0);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes popup-close{
      0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.0);
    }
  }
  
  .footer{
    text-align: center;
  }