function f(vetor){
var random=function(size){return Math.floor(Math.random()*size)}
var n=random(vetor.length)
document.body.style.backgroundImage="url("+vetor[n].src+")"
document.body.style.backgroundColor=vetor[n].background
}


