.looping {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.looping .floor {
  margin-top: -20px;
  margin-bottom: 5%;
  width: 100%;
  height: 20px;
  background-color: var(--color-light)
}
#looping-track {
  position: relative;
  width: 300px;
  height: 300px;
  border: 20px solid var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
}
#looping-car {
  position: absolute;
  width: 100px;
  height: 100px;
  /* Add transform-origin to ensure rotation is around the car's center */
  transform-origin: center;
}
#looping-car img {
  position: absolute;
  top: 0;
  left: 0;
}
.looping .vehicle {
  width: 100%;
  height: 100%;
  rotate: -90deg;
}
.looping .car {
  filter: url(#filter-color-accent-1)
}
.looping .wheels {
  filter: url(#filter-color-accent-2)
}