1.
.apresentacao__botoes{
display: flex;
justify-content: space-between;
}
.apresentacao__botoes__link{
background-color: var(--verde-botao);
width:120px;
text-align: center;
border-radius: 6px;
padding:10px 10px;
list-style: none;
text-decoration: none;
}
2.
.apresentacao__botoes__link{
background-color: var(--verde-botao);
width:120px;
text-align: center;
color:var(--marrom-texto);
font-size: 16px;
border-radius: 6px;
}
3.
<div class="apresentacao__botoes">
<a class="apresentacao__botoes__link" href="https://www.linkedin.com/in/valentina-sousa-318636376/">Linkedin</a>
<a class="apresentacao__botoes__link" href="https://github.com/ValentinaSousa">Github</a>
</div>
4.
.apresentacao__botoes__link{
background-color: var(--verde-botao);
width:120px;
text-align: center;
color:var(--marrom-texto);
font-size: 16px;
border-radius: 6px;
padding: 10px 10px;
}
5.
.apresentacao__botoes__link{
background-color: var(--verde-botao);
width:120px;
text-align: center;
color:var(--marrom-texto);
font-size: 16px;
border-radius: 6px;
padding: 10px 10px;
list-style: none;
text-decoration: none;
Ficou assim: