/* .container{
   width: 825px;
   margin-left:auto;
} */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.product{
    border:5px solid #000;
    width: 825px;
    /* margin-left: auto;
    margin-right: auto; */
    margin: 50px auto;
    position: relative;
    /* box-sizing: border-box; */
}

.sale{
    position: absolute;
    margin-left: -35px;
    font-size: 16px;
    margin-top: -10px;
    background-color: red;
    padding:5px 15px;
    color: #ffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.title{
    background-color: #f7f7f7;
    text-transform: uppercase;
    /* margin-bottom: 0px;
    margin-top: 0px;
    margin: 50px auto; */
    text-align: center;
    padding: 15px;
}

.short-desc{
    margin-bottom: 10px;
    /* width: 240px; */
    clear: both;
}
.price{
    font-weight:bold;
    font-size: 24px;
    float: left;
}
.info{
    text-transform: uppercase;
    color: #535151;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    float: right;
    margin-top: 8px;
}
.box{
    margin-top: 30px;
    background-color: #000;
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: 5px;
    }

  .color-black{
    background-color: rgb(0, 0, 0);
  }
  .color-blue {
    background-color: rgb(146, 146, 225);
  }
  .color-red {
    background-color: rgb(235, 12, 12);
  }
  .color-yellow {
    background-color: yellow;
  }
  .color-green {
    background-color: rgb(78, 201, 78);
  }
  .color-brown {
    background-color: rgb(66, 44, 44);
  }

.more-info{
    /* thanks to inline block we can simply add
    margin to elements */
    /* display: inline-block; */
    float: left;
    width: 100vh
}
.more-info:link{
    color: #000;
    text-decoration: underline;
}
.more-info:hover{
    color: #000;
    text-decoration: none #41094e;
}
.more-info:visited{
    color: #000;
}

.product-details{
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom:15px;
}
.details{
    list-style: square;
    margin-left: 20px;
   
}
.details li{
    margin: 10px;
}
.add-cart{
    background-color: #000;
    color: #ffff;
    width: 818px;
    height: 50px;
    text-transform: uppercase;
}
.add-cart:hover{
    background-color: #f7f7f7;
    color: #000;
    border: 3px solid black;
    padding: 15px;
 }

 .part1{
     width: 200px;
    float: left;
    margin-right: 40px;
    margin-top: 20px;
 }
 .part2{
    float: left;   
    width: 200px;
    margin-top: 20px;

 }

.pic{
    float: left;
    margin-right: 40px;
}

.clearfix::after{
    content: '';
    display: block;
    clear: both;
}
.container{
    /* background-color: red; */
}