**Is there a way to position a button on the top right with white space on the left side? **
<div class="newsletter">
<button class="goup">GO UP</button> *How can I put this btn to the right with full white space??*
<div class="left-side">
<a href="">Shop</a>
<a href="">About</a>
<a href="">Support</a>
<a href="">COVID-19 Info</a>
<a href="">Order Status</a>
<a href="">Corporate Sales</a>
</div>
//CSS
.newsletter {
position: relative;
overflow: hidden;
background-color: #f9f9f9;
}
.goup {
width: 81px;
height: 81px;
border: none;
padding: 25px 30px;
font-size: 16px;
font-weight: 700;
background-color: #000;
color: #fff;
display: flex;
float: right;
justify-content: right;
}
.left-side {
position: relative;
}
How can I align this button to the right with ample white space?