body{
	display: flex;
    background: #e0edf9;
    text-align: center;
    margin: 0;
    flex-direction: column;
    align-items: center;
}
.div1{
	background: red;
	height: 50px;
	width: -webkit-fill-available;
    margin: 0 3%;
	border-radius: 8px;
}
.pisca{
    animation-name: pisca;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
@keyframes pisca {
    0% {
	    background-color: #00f6ff;
	}
	25% {
	    background-color: #62ff00;
	}
	50% {
	    background-color: #f9ff00;
	}
	75% {
	    background-color: #ff0000;
	}
	100% {
	    background-color: #00f6ff;
	}
}