/* main page style */
body {
  background: #f2f2f2;
  font-family: Arial, sans-serif;
}


/* hover box */
.newart {


  transition: transform 0.2s;
}

.newart:hover {
  transform: translateX(15px) rotate(2deg);
}

/* moving box */
.moving {
  margin-top: 15px;
  width: 80px;
  text-align: center;

  animation: slide 3s infinite;
}

/* animation steps */
@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(25px); }
  50% { transform: translateX(50px); }
  75% { transform: translateX(160px); }
  100% { transform: translateX(0); }
}

/* footer text */
.footer {
  margin-top: 300px;
  font-size: 9px;
}

/* print style */
@media print {
  .newart,
  .moving {
    display: none;
  }
}