@keyframes bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-30px); } }
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0; }

.container {
  text-align: center; }
  .container h1 {
    color: #3498db;
    margin-bottom: 20px; }

.animated-box {
  width: 100px;
  height: 100px;
  background-color: #e74c3c;
  margin: 0 auto;
  animation: bounce 2s infinite; }

/*# sourceMappingURL=style.css.map */
