body {
font-family: "Roboto Slab",serif;
}
*{
    box-sizing: border-box;
}
h1 {
    margin-left: 310px;
}
.container {
    
    margin: 2rem auto;
    width: 70vw;
    
}
.product {
    border: 1px  solid gray;
    
    display: flex;
    flex-direction: row;
    margin-left: 40px;
    

}
img {
    transition: 0.7s;
    width: 12rem;
    height: 8rem;
}
.product-view {
    margin: 40px 10px 0 20px;
}
.product-elemets{
    
   display: flex;
   justify-content: flex-start;
   margin: 20px;
}

.product-favorit {
    color: red;
    margin-left: 50px;
    opacity: 0;
    transition: 0.5s;
    
}
.product-description{
    margin: 1px 20px;
    text-align: justify;
    font-size: 1.2rem;
}
.product-title {
    margin: 20px 20px;
    font-size: 1.4rem;
}
.product-buy {
    width: 70%;
    margin: 20px 10px;
}
span {
    color: black;
}
.cart {
    margin-bottom: 10px;
}
.price {
    margin: -20px 0;
    color: orange;
    font-size: 20px;
}
.price2 {
    
    margin: 30px 0 5px 0 ;
    
}
.all{
    margin-bottom: 30px;
}
.cart {
    
    border-color: orange;
    width: 100%;
    height: 40px;
    background: orange;
    color: white;
    
}
.click {
    border-color: green;
    width: 100%;
    height: 40px;
    background: green;
    color: white;
    opacity: 0;
    transition: 0.5s;
}
.product:hover  img{
    transform: scale(1.2);
    transition: 0.5s;
}
.product:hover .click {
    opacity: 1;
    transition: 0.5s;
}
.product:hover .product-favorit {
    opacity: 1;
    transition: 0.5s;
}




