* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
  }
  
  .product {
    display: flex;
  }
  
  .product-image {
    flex-basis: 50%;
    margin-right: 20px;
  }
  
  .product-image img {
    max-width: 100%;
  }
  
  .product-details {
    flex-basis: 50%;
  }
  
  .product-details h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .product-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: red;
  }
  
  .product-description {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  a {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  a:hover {
    background-color: #0062cc;
  }
  

@media(max-width: 630px){
  .product{
    flex-direction: column;
  }
}