Splash Screen - Move the Start Button to the Top

In this recipe, we will modify the Splash Screen plugin, so we move the default position of the Start button, to be on the top of the screen and not on the button.
CSS:
#overlay wdg-other-splash button {
padding: 10px 20px;
width: 250px; /* modify this to change the size of the button */
background-color: rgba(255, 255, 255, 0.7); /* modify to change the color of the button */
color: black; /* modify to change the color of the text */
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
top: 40px; /* this will add a margin between the top and the button */
bottom: unset; /* this will move the button to the top */
}
Preview: