Boa tarde amigos!
Eu não estou conseguindo alinhar um botão ao centro da tela. O que há de errado com meu código?
INDEX.HTML:
<link rel="stylesheet" href="assets/css/style.css">
<div class="btn">Aqui</div>
STYLE.CSS:
.btn{
padding: 15px 13px;
width: 55px;
color: #CCC;
background: #209915;
border: 1px solid #555;
border-radius: 5px;
text-align: center;
user-select: none;
cursor: pointer;
}
.btn:hover{
background: #19ee05;
transition: background 1s;
}
#btn{
justify-content: center;;
}