body {
    font-family: Arial, sans-serif;
    /* background-color: #f5f5f5;
    color: #333; */
    /* box-shadow: rgb(255, 255, 255) 0px 7px 29px 0px; */
}
.pricing{
    display: flex;
    justify-content: center;
    text-align: center;
}
.container {
    /* width: 80%;
    margin: 0 auto;
    padding: 20px; */
}
.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.pricing-card {
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* box-shadow: rgba(255, 255, 255, 0.173) 0px 7px 29px 0px; */
    border: 1px solid rgba(255, 255, 255, 0.169);
    padding: 20px;
    margin: 10px;
    width: 30%;
    min-width: 250px;
    text-align: center;
    overflow: hidden;
}
.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.pricing-card p {
    font-size: 16px;
    margin-bottom: 20px;
}
.price {
    font-size: 32px;
    color: #dacece;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #ff0000ee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background-color: #ff0000ee;
}

.bagrcard {
    position: relative;
}
.cube{
    height: 250px;
    width: 250px;
    background-color: red;
    background-image: conic-gradient(from 0deg at 50% 50%,#ff0000 0deg,hsl(354,100%,50%) 54.89161972682219deg,#00a6ff 106.69924423399361deg,#4797ff 162deg,#04f 252.00000000000003deg,#ff8000 306.00000000000006deg,hsl(0,100%,50%) 360deg);
    border-radius: 50%;
    transform: rotate(-90deg);
    filter: blur(70px);
    position: absolute;
    bottom: -10%;
    right: -10%;
    z-index: -2;


}

ul{
    text-align: start;
}

@media (max-width: 768px) {
    .pricing-card {
        background: transparent;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /* box-shadow: rgba(255, 255, 255, 0.173) 0px 7px 29px 0px; */
        border: 1px solid rgba(255, 255, 255, 0.169);
        padding: 20px;
        margin: 10px;
        width: 100%;
        min-width: 250px;
        text-align: center;
        overflow: hidden;
    }
}