/* .items{
    display: flex;
    flex-wrap: wrap;
  justify-content: space-around;
 
}
.item-list h3{
    padding: 0%;
    margin: 0%;
    font-size: 25px;
}
.item-list{
    border-radius: 20px;
    box-shadow: 1px 3px 1px 1px red ;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px;
    
}
    */
    .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px;
      max-height: 400px; 
    -ms-overflow-style: none; 
    scrollbar-width: none;   

    overflow-y: scroll;
}

.item-list{
    width: 200px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    padding: 10px;
    text-align: center;
}

.item-list{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-list:hover{
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
}
/* .item-list img{
    width: 200px;
    height:200px;
}
    */
  .item-list img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}  
.item-list pre {
padding: 0%;
margin: 0%;
}
.item-list pre span{
    color: red;
    font-weight:bold;
    font-size: 20px;
}
.passage{
    padding: 0%;
    margin: 10px;
    margin-top: -4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.passage h5{
    width: fit-content;
    font-size: 20px;
    margin: 0%;
    padding: 0%;
}
/*
*/
.passage button{
    text-decoration: none;
    background-color: orange;
    color: white;
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}
.openn{
   display: flex;
   width: 100%;
   background-color: #bdbcbc;
   border-radius: 20px;
}
.openn button{
    color: rgb(248, 248, 251);
    background-color:goldenrod;
    border-radius: 10px;
    font-weight: bold;
    border:none;
    cursor: pointer;
    width: 90px;
    height: 25px;
    margin: 2px;
}
.openn button:hover{
    background-color: red;
}
.passage button:hover{
    background-color: red;
}