body
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    min-height: 100vh;
}

h1
{
    text-align: center;
}
#container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content: center;
    align-content: center;
    padding: 24px 0;
    max-width: 90%;
    margin: 0px auto;
}
.card
{
    width: 300px;
    /* min-height: 400px; */
    height: fit-content;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 12px;
}
   
.card img {
    width: 100%;
    height: 200px;

} 
.price-rating
{
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gray
{
    color: rgb(112, 110, 110);
        margin-bottom: -2px;
}
.Large
{
    font-size: 24px;
     margin-bottom: -2px;
}
button
{
  background: 
     
        #0b9a76 ;
     
    color: white;
    padding: 10px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 2px;
    transition: 1s;
}
button:hover
{
    background-color: white;
    color:#0b9a76 ;
    border: 1px solid #0b9a76;
}
