<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
  <link rel="stylesheet" href="css/style.css">
  <title>Frontend Mentor | Order summary card</title>
</head>
<body>
  <div class="order-summary">
    <div class="first-col"></div>
    <div class="second-col">
      <div class="summary-title">Order Summary</div>
      <div class="order-descreption">You can now listen to millions of songs audiobooks, and podcasts on any device anywhere you like!</div>
      <div class="payment-plan">
        <div class="idkwtci">
          <div class="payment-frequency">Annual Plan</div>
          <div class="payment-price">$59.99/year</div>
        </div>
        <div class="change-plan">Change</div>
      </div>
      <button class="proceed">Proceed to Payment</button>
      <button class="cancel">Cancel Order</button>
    </div>
  </div>
</body>
</html>