body{
    width: 100vw;
    height: 100vh;
    background-color:rgb(229, 214, 219);

    font-family: Century Gothic, Bold;
}

.container{
    display: flex;
    width: 100%;
    margin: 15px;
    
}
h1{
    color: palevioletred;
}
.d1{
    flex: 0 0 45%
}
.d2{
    flex: 0 0 55%;
}
.d1 img{
    position: relative;
    /*position:absolute;
    top: 20%;
    left: 5%;*/
    width: 50%;
    height: 30%;
    display: block;
    margin: 0 auto;
    padding-top: 40%;
}

.d2a{
    display: flex;
    gap: 8px;
    height: 30px;
}
.oldprice{
    text-decoration:line-through;
    text-decoration-color: brown;
    color: black;
}
.price{
    color: brown;
}
.pricediscount{
    background-color: palevioletred;
    color: white;
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.plusmoins{
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 10px;
    background-color: gray;
    margin-left: 8px;
    margin-right: 8px;
}
.submit{
    width: 70px;
    height: 50px;
    color: blanchedalmond;
}
.qtt{
    margin-top: 20px;
    display: flex;
}
.addbag{
    margin-left: 10px;
    width: 200px;
    height: 30px;
    color: white;
    background-color: palevioletred;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.moto{
    display: flex;
    justify-content: center;
    font-size: large;
    color: palevioletred;
}
li{
    margin-bottom: 10px;
}
ul,li{
    font-size: 16px;
}
.reviews{
    width: 90px;
    height: 30px;
    background-color: palevioletred;
    border: none;
    border-radius: 10px;
    transform: rotate(90deg);
  
    position: fixed;
    top:50%;
    right: 0px;
    cursor: pointer;
  }


@media screen and (max-width:786px) {
    .container{
        flex-direction: column;
    }
    .d1 img{
        padding-top: 20px;
        position: relative;
        display: block;
        margin: 0 auto;
    }
    .reviews{
        position: relative;
        transform: rotate(0deg);
    }
    
}

