#fv {
position: absolute;
overflow: hidden;
border-radius: 50%;
background-color: #00000000;
transition: 1.5s;
height: 100px;
width: 100px;
box-shadow: 0px 0px 50px 1000px #000, 0px 0px 50px 20px #000 inset;
border: none;
}
this.player.move = false
this.settings.collision = false
this.settings.move = false
this.player.lives--
this.player.x = (this.settings.width - 1) / 2
this.settings.iid = setInterval(() => {this.player.visible = !this.player.visible}, 200)
setTimeout(() => {
this.settings.move = true;
this.settings.collision = true;
this.player.move = true;
this.player.visible = true;
clearInterval(this.settings.iid);
this.settings.speed = this.settings.start_speed
}, 2000)