<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
Design A Button Last step page 6
https://www.codecademy.com/courses/web-beginner-en-UuBLw/0/6?curriculum_id=50579fb998b470000202dc8b
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
How do i contain text inside the circle? Ive tried text-align and margin:auto.
<div>
<a href="https://www.codecademy.com/"> codecademy</a>
</div>
div {
height: 100px;
width: 100px;
border-color: #6495ED;
background-color: #BCD2EE;
border-style: solid;
border-width: 2px;
border-radius: 50px;
margin: auto;
text-align: center;
}
a {
text-decoration: none;
font-family: impact;
text-align: center;
}
<do not remove the three backticks above>