Today in class I continued my Sonic Dash game, and I added a background to the intro of the game

I used the is part of my code to add the background of the screen. body {
margin: 0;
/* Updated size and position: Higher % = Lower image */
background: url(‘background.png’) no-repeat;
background-size: 110%;
background-position: center 25%;
background-attachment: fixed;
font-family: Arial, sans-serif;
color: white;
text-align: center;
height: 100vh;
overflow: hidden;
}
I used background: url to add the image that I adjusted in Canva to make the background look like the actual game.