/*
  © 2022–2023 CVS Health and/or one of its affiliates. All rights reserved.

  Licensed under the MIT License. See LICENSE file at the project root or
  https://opensource.org/license/mit/ for details.

  SPDX-License-Identifier: MIT
*/

/*
  bad.css
  Stylesheet for validation/tests/targets/motion/bad.html.
*/

@keyframes shrink {
  from {
    margin-right: 0%;
    font-size: 1rem;
  }
  to {
    margin-right: 50%;
    font-size: 5rem;
  }
}
.moving {
  animation-duration: 7s;
  animation-iteration-count: 2;
  animation-name: shrink;
  background-color: #ccc;
}
