
    .li>li{
        border: 2px solid;
        border-radius:5px; 
        padding:10px;
    }
    .card {
        width: 250px;
        /* height: 350px; */
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 21px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        left:42%;
          
    }

    .card-title {
        position: relative;
        top: -35px;
        left: 51%;
        transform: translateX(-50%);
        background-color: #28a745;
        color: #fff;
        padding: 2px 22px;
        font-size: 25px; font-weight:500px;
        border-radius: 6px;
        width: 210px;
        text-align:center;
        padding: 5px;
        margin-top: 20px;
        
    }
        
        .card-title:hover{ background-color: #218838}

    .card-list {
        list-style-type: none;
        padding-top: 20px;
        margin-bottom: 18px;   
        margin-top:-35px;     
        /* transform: translateX(-50%); */
        background-color:rgb(148, 146, 4);
        color: #fff;
        padding: 4px 20px;
        font-size: 15px;
        border-radius: 5px;
        width: 200px;
        text-align:center;
    }

    .card-list li {
        margin: 15px 0;
    }

    .purchase-button {
        background-color: #28a745;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        font-size:20px;

    }

    .purchase-button:hover {
        background-color: #218838;
    }

