@charset "utf-8";
.element {
	height: 650px;
	width: 950px;
	background-color: #333333;
	animation-name: stretch;
	animation-duration: 2.0s;
	Xanimation-timing-function: ease-out;
	animation-delay: 1;
	xanimation-direction: alternate;
	xanimation-iteration-count: infinite;
	animation-fill-mode:none;
	Xanimation-play-state: running;
}

@keyframes stretch {
  0% {
    transform: scale(0);
    background-color: #363d50;
    border-radius: 100%;
  }
  50% {
    background-color: #363d50;
  }
  100% {
    transform: scale(1.0);
    background-color: black;
  }
}
