body {
  background-color: black;
  color: white;
  font-family: Arial;
  text-align: center;
}

@keyframes slideLeft {
  from {
    transform: translateX(100px);
    opacity: 0;                   
  }
  to {
    transform: translateX(0);     
    opacity: 1;                   
  }
}



img {
  animation: slideLeft 1.2s ease-in-out forwards;
}
