
    body {
      background-color: hsl(30, 38%, 92%);
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }

    .outer-container {
      display: flex;
      flex-direction: row;
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      max-width: 600px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .perfume-image img {
      width: 100%;
      display: block;
      height: 100%;
      object-fit: cover;
    }

    .inner-container {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .inner-container p {
      font-size: 14px;
      color: hsl(228, 12%, 48%);
      line-height: 1.6;
    }

    .inner-container h1 {
      font-size: 24px;
      color: hsl(212, 21%, 14%);
      margin: 1rem 0;
    }

    .price-section {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .cur-price {
      color: hsl(158, 36%, 37%);
      font-size: 28px;
      font-weight: bold;
    }

    .price {
      text-decoration: line-through;
      color: hsl(228, 12%, 48%);
    }

    button {
      background-color: hsl(158, 36%, 37%);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    button:hover {
      background-color: hsl(158, 36%, 27%);
    }

     @media (max-width: 800px) {
      .outer-container {
        
        flex-direction: column;
      }
       .outer-container h1{
        font-size: 18px;
      }
    }
