Hey there! I have a popup with a button that reveals random text containing between 0 to 32 words when clicked. The issue is, the popup keeps resizing based on the length of the text, causing the button to move around. Is there a way I can keep the button in a fixed position so users don't have to search for it every time?
This is the HTML for the button:
<button onclick="function()" class="btn button-gradient">click</button>
And here's the CSS for styling the button:
.btn {
font-family: 'Raleway', sans-serif;
color: #9A0000;
border: none;
}