- Espaçamento e tamanho dos botões | Melhorando a visibilidade dos botões:
\\código omitido
.apresentacao__links__link {
background-color: #22D4FD;
width: 280px;
text-align: center;
border-radius: 16px;
font-size: 24px;
text-decoration: none;
color: #000000;
}
- Criando uma classe comum para botões:
HTML:
\\código omitido
<div class="apresentacao__links">
<a class="apresentacao__links__link" href="https://instagram.com/imlais" target="_blank">Instagram</a>
<a class="apresentacao__links__link" href="https://github.com/moraeslais" target="_blank">Github</a>
</div>
\\código omitido
- Ajustando o espaçamento interno dos botões | Importando e aplicando a fonte correta:
\\código omitido
.apresentacao__links__link {
background-color: #22D4FD;
width: 280px;
text-align: center;
border-radius: 16px;
font-size: 24px;
font-weight: 600;
padding: 21.5px 0;
text-decoration: none;
color: #000000;
font-family: 'Montserrat', sans-serif;
}