.tcgelements-image-scroll-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; // Center horizontally
  padding: 0; // Remove any default padding

  .rectangle {
    height: 500px;
    width: 25%;
    border-radius: 15px;
    margin: 0 5px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}