.anim-container {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 20% 40%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.8);;
}

.start {
  color: #f44336;  
}

.end {
  color: #4caf50;
  position: relative;
  left: 200px;
}

.car {
	animation: car 5s infinite cubic-bezier(0.58, 0.38, 0, 0.97);
	height: 40px;
	width: 40px;
}

@keyframes car {
	0% {
		transform: translate(0px, 0px);
	}
	100% {
		transform: translate(200px, 0px);
	}
}
