@keyframes spin{
	0%       {transform: rotate(0deg);}
	100%     {transform: rotate(360deg);}
}
body{
background-color: black;
}

img.vinylrecord {
	animation:spin 1s infinite;
	width:40vw;
	background-color: black;
	background-position: center center;
    background-size: cover; 
    animation-timing-function: linear;
    margin-left:30vw;
    margin-top: 10vh;
    margin-bottom: 20vh;
    margin-right: 10vw;

}

