body {
  background-color: green;
  color: black;
  font-family: Times;
  align-items: flex-start;
  justify-content: flex-start;

}
  #hometext {
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1;
  margin: 0 0%;
  
  animation-name: hometext;
  animation-duration: 600ms;
  animation-iteration-count: infinite;
  animation-timing-function: step-start;
}

@keyframes hometext{
  0%   {background-color:orange; left:0px; top:0px;}
  50%  {background-color:red; left:0px; top:0px;}
  100%  {background-color:orange; left:0px; top:0px;}

}