* {
    box-sizing: border-box;
}



body {
    margin: 0;
}

h1{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-shadow: 0px 0px 2px black;

}

.cointeiner{
    margin: 2rem auto;
    width: 70vw;

}

img{
    width: 12rem;
    height: 8rem;
    margin: 2.5rem;
    transition: 0.7s;
}

.cell:hover  img{
    transform: scale(1.3);
    transition: 0.7s;

}

.catalog{
    display: flex;
    flex-direction: column;


}

.cell{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.photo{
    border: 0.3px solid black;
    border-right: none;
    width: 20%;

}

.information{
    font-family: 'Roboto', sans-serif;
    border: 0.3px solid black;
    border-right: none;
    border-left: none;
    display: flex;
    flex-direction: column;
    width: 60%;
}

h3{
    font-family: 'Roboto', sans-serif;   
    font-size: 1.5rem;

}

.discription{

    text-align: justify;
    margin-bottom: 0.5rem;

}

.icons{
    justify-content: space-between;
    margin: 0.5rem auto 2rem ;
    justify-content: center;
    font-size: 1.3rem;
}

.heart{
    padding-left: 8rem;
    opacity: 0;
    transition: 0.5s;
}

.cell:hover  .heart{
    transition: 0.7s;
    opacity: 1;

}

.red{
    color: red;

}

.price{
    width: 20%;
    border: 1px solid black;
    border-left: none;
    padding-left: 3rem;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

h4{
    font-weight: 700;
    font-size: 1.5rem;
    color: orange;
    margin-top: 1rem;

    
}

.min_max{
    font-size: 0.8rem;
    margin-top: -1.5rem;

}

.all_pres{
    margin-top: 2rem;
    color: orange;
    font-size: 1.2rem;
    font-weight: bold;
}

.b1{
    margin: 2rem 0.5rem 1rem 0;
    background-color: orange;
    padding: 0.5rem 1.5rem;
    border-radius: 6px; 
    color: white;
    font-size: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;

}

.b2{
    padding: 0.5rem 1.1rem;
    border-radius: 6px; 
    background-color: rgb(6, 176, 206);   
    margin: 0 0.5rem 1rem 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    transition: 0.5s;
    opacity: 0;
    font-size: 1rem;
}

.cell:hover   .b2{
    transition: 0.7s;
    opacity: 1;

}

footer{
    
    margin: 1rem auto;
}

a{

    text-decoration: none;
    color: purple;
    font-size: 2rem;


}

.super{
    opacity: 0;
    color: white;
    background-color: orange;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    
    font-size: 1.4rem;
    transition: 0.5s;
    display: inline-block;
}

.cell:hover   .super{
    transition: 0.7s;
    opacity: 1;
    transform: rotate(-6deg);
}
