.product-Separationbar {
            height: 50px;
            background-color:darkgray;
            }
.product-title {
margin: 20px 80px;
}

.product-details{
    display:flex;
    box-sizing: border-box;
    margin: 0px 80px;
    }
.image{
    box-sizing: border-box;
    width: 20%;
    max-width: 20%;
}
.description{
    box-sizing: border-box;
    width: 70%;
    flex: 1;
    margin-left: 50px;
}
.button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background-color: #007BFF;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
        }
        .button:hover {
            background-color: #0056b3;
        }