body{
	margin: 0;
}
.box {
    display: flex;
    flex-direction: column;
    margin: auto;
    overflow: hidden;
    width: 960px;
}
.container {
    margin: 0px auto;
    border: 2px solid rgb(190, 187, 187);
    display: flex;
    justify-content: center;
    
}
h1 {
    margin: auto;
}
.container:hover img{
    transform: scale(1.2);
    
}
.container:hover .product-favorites {
    color:black;
    transition-property:color;
    transition-duration: 0.5s;
}
.container:hover .buy-1-click {
    background-color: green;
    color: white;
    transition-duration: 0.5s;
}
.container:hover .fa-heart{
    transition-duration: 0.3s;
    color: red;
}
.main {
    width: 550px;
    padding: 15px;
    font-size: 18px;
}
img {
    width: 150px;
    height: 90px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    transition-duration: 0.5s;
    box-sizing: border-box;
}
.product-name {
    font-weight: 600px;
    font-size: 22px;
}
.info {
    font-size: 18px;
}
.product-favorites {
    color: rgb(190, 187, 187);
}
.product-favorites:hover {
    transition-property: color;
    transition-duration: 0.5s;
    color: black;
}
h2 {
    margin-bottom: 0;
}
.products-elements {
    margin-right: 60px;
    font-size: 18px;
}
.middle {
    display: flex;
    align-items: center;
}
.prices {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: auto;
    padding: 5px;
}
.product-price {
    color: orange;
}
p {
    margin: 0px;
}
.product-price {
    font-size: 22px;
    margin: 5px;
}
.price-range, .products-info {
    font-size: 18px;
    
}
button {
    width: 180px;
    height:40px;
    margin-bottom: 5px;
    padding: 0px;
    border: 0px;
    color: white;
    font-size: 12px;
}
.add-to-box {
    background-color: orange;
}
.buy-1-click {
    background-color: white;
}




