1- Make the button's cursor as pointer by using this CSS property "cursor: 'pointer' "
2- Make the <a> </a> tags to have this " target='_blank' "
like this <a href="Link here" target="_blank"> </a>.
This will make the website be opened in a new tab.
3- On small screen sizes (around 450px width and less), the profile picture is not centered in the middle, try to make it in the middle by either using Flexbox for all the items (containers), with flexDirection: 'column' and alignItems: 'center', or by using margin: 0 auto;
Try to learn and use Flexbox.
Just a quick note, make the button "PLAY AGAIN" cursor pointer.
And make it on hover to change the color of the button's text from dark to red.
And put some space between the result and the button :).