body{
    background:#f5f5f5;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

}

.product-card{
    background: white;
    width: 300px;

    padding: 20px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

img{
    width: 180px;
    height: auto;
}

h1{
    font-size: 18px;
    margin: 15px;
}
h2{
    font-size: 18px;
    color: #555;
}

.product-card p:last_of_type{
    font-size: 24px;
    font-weight: bold;
    color:#1e88e5
}

button{
  background: #1e88e5;
  color:white ;

   padding: 12px 20px;

   border-radius: 8px;

   cursor: pointer;

   margin-top: 20px;
}

button:hover{
    background-color: #1565c0;
}