I have a button that i make. but what i want is that to make the button center alligin. i use alignment center. but it is not working. what i have to do is that to make the button allignement in center in whole page.
.button {
text-decoration:none;
text-align:center;
display: flex;
background: #333333;
color: white;
justify-content: space-between;
align-items: center;
pointer-events:none;
max-width:660px;
border-bottom:solid gray 1px
font-family: DIN pro;
font-weight: bold;
}
.button .fa {
padding:1em;
pointer-events:auto;
width:1.5em;
}
.button::before {
content: '';
padding: 1em
}
<a href="#" class="button"> CONTACT <i class="fa fa-arrow-right border-left "></i></a>