Help, please, stylize the button so that when you hover the cursor, it and the text inside do not jump.
Initially, the button should be with a thin line in the background, and a full background 40px high appears in the hover.
.btn-container { height: 40px; } .btn { display: inline-block; line-height: 8px; text-decoration: none; color: #000000; font-size: 18px; text-transform: uppercase; letter-spacing: 3px; font-weight: bold; width: 220px; height: 8px; background-color: #f0c52e; text-align: center; } .btn:hover { width: 220px; height: 40px; line-height: 40px; } <div class="btn-container"> <a class="btn" href="#">More about us</a> </div>