*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background: whitesmoke;
}

.main-card{
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.top-img{
    height: 240px;
    width: 100%;
    position: relative;
    background-image: url(bg.jpg);
    background-size: cover;
    border-radius: 10px;
}

.bottom-desc{
    height: 150px;
    width: 100%;
    background: #272a2f;
    position: relative;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.price{
    position: absolute;
    top: -80px;
    height: 80px;
    width: calc(100% - 50%);
    background: #272a2f;
    border-top: 10px solid whitesmoke; 
    border-right: 10px solid whitesmoke; 
    border-top-right-radius: 25px ;
}

.price::before{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0 whitesmoke;
}

.price::after{
    content: '';
    position: absolute;
    right: -25px;
    bottom: 0;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #272a2f;
}

.top-img::before{
    content: '';
    position: absolute;
    bottom: 70px;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 whitesmoke;
}

.top-img::after{
    content: '';
    position: absolute;
    right: 125px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 whitesmoke;
}

.price p{
    position: relative;
    width: 80%;
    background: white;
    padding: 10px 10px;
    margin: 15px 15px;
    border-radius: 8px;
    font-weight: 400;
    text-align: center;
    font-size: 1.1rem;
}

.price ul{
    font-size: 1.2rem;
    position: absolute;
    inset: 90px 0 0 40px;
    color: white;
}

