html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.prices {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
    margin:70px 0 ;
}

.price-items {
    /* background-color: green; */
    width: 300px;
    height: 450px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 10px 20px;
    font-family: sans-serif;

}
.list-p {
    margin: 40px 0;
    font-size: 15px;
}
.price-items button {
    width: 100px;
    height: 40px;
    background-color: #212529;
    color: white;
    border: none;
    border-radius: 5px;
}

#price-p1 {
    font-size: 14px;
}


