body { 
	background: #343434;
}

svg {
	fill: black;
	stroke: black;
	animation: hello 10s linear infinite;
	-webkit-animation:hello 10s linear infinite;
}

@media (max-width: 400px) {
  svg {
  	width: 200px;
  	height: 200px;
  }
}

@-webkit-keyframes hello {
	0%, 100% {
    	fill: black; 
		stroke: black;
	}
    33% {
    	fill: #2E5CE6;
		stroke: #2E5CE6;
	}

	66% {
		fill: #FF3399; 
		stroke: #FF3399;
	}
}

@keyframes hello {
    0%, 100% {
    	fill: black; 
		stroke: black;
	}
    33% {
    	fill: #2E5CE6;
		stroke: #2E5CE6;
	}

	66% {
		fill: #FF3399; 
		stroke: #FF3399;
	}
}