I am having trouble centering my button and don't know why its not working.
here is the html and the CSS.
.button {
  margin:auto;
  display: inline-block;
  height: 100px;
  width: 300px;
  background: #00007f;
  border: 2px solid rgba(192, 192, 192, 0.59);
  border-radius: 50px;
  padding: 15px 20px;
  color: rgba(172, 172, 172, 0.55);
  font: bold 3em/100px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  box-shadow:0 4px 0 #ACACAC;
}
a.button {
  text-decoration: none;
}<a href="blabla.html" class="button"  style= "text-align: center"> Start Game</a> 
     
    