@keyframes wow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

body {
    animation: .5s wow ease infinite;
    background: linear-gradient(-45deg, pink, orange, violet, yellow);
	background-size: 400% 400%;
    height: 100vh;
    text-align: center;
    color: white;
}

.lyrics {
    font-size: 16pt;
}

.top {
    margin: 0;
    padding-top: 1em;
    line-height: 0;
}

.img {
    height: 15%;
}