* {
    box-sizing: border-box;
  }
   
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }

  header {
    font-size: 30px;
    padding: 10px;
    border-bottom: 2px solid #006400;
}

header a {
    text-decoration: none;
    color: #000000;
}


  #myCart {
    width: 60%;
    min-width: 450px;
    height: auto;
    margin: 10px auto;
    display: flex;
  }

  .content {
    display: flex;
    flex: 3;
    flex-direction: column;
  }

  .title {
    height: 60px;
    border-bottom: 1px solid #E1E8EE;
    padding: 20px 30px;
    color: #5E6977;
    font-size: 18px;
    font-weight: 400;
  }
   
  .products {
    padding: 20px 30px;
    display: flex;
  }

  .buttons {
    position: relative;
    padding-top: 30px;
    margin-right: 60px;
  }

  .delete-btn {
    display: inline-block;
    Cursor: pointer;
    padding: 70px 50px 0 0 ;
    width: 18px;
    height: 17px;
    background: url(../images/delete-icn.svg) no-repeat center;
  }

  .pic {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
   
  .description {
    padding-top: 10px;
    margin-right: 10px;
    margin-left: 30px;
  }
   
  .description .desc {
    display: block;
    font-size: 14px;
    color: rgb(54, 190, 49);
  }

  .quantity {
    padding-top: 20px;
    margin-right: 60px;
  }
  .quantity input {
    border: none;
    text-align: center;
    width: 35px;
    font-size: 15px;
    font-weight: 300;
  }
   
  .btn {
    width: 30px;
    height: 30px;
    background-color: #E1E8EE;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }

  .totalPrice {
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
    flex: 1;
  }

  footer {
    bottom:0;
    left:0;
    width: 100%;
    background-color: lightgreen;
    padding: 5px;
    text-align: center;
}

  @media (max-width: 1200px) {
    #myCart {
      width: 100%;
      margin: 0;
      height: auto;
      overflow: hidden;
    }

    
    .products {
      height: auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    
    .buttons {
      margin-right: 20px;
    }
}