HTML
</p>
<div class="presentacion__enlaces">
<h2 class="presentacion__enlaces__subtitulo"> Accede a mis redes:</h2>
<a class="presentacion__enlaces__link" href="https://instagram.com/">Instagram</a>
<a class="presentacion__enlaces__link" href="https://github.com/">GitHub</a>
</div>
CSS
.presentacion__enlaces{
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
gap: 32px;
}
.presentacion__enlaces__subtitulo {
font-family: 'Krona One', sans-serif;
font-size: 24px;
font-weight: 400;
}
.presentacion__enlaces__link{
width: 378px;
text-align: center;
border-radius: 8px;
font-size: 24px;
font-weight: 600;
padding: 21.5px 0;
text-decoration: none;
color: #F6F6F6;
font-family: 'Montserrat', sans-serif;
border: 2px solid #22D4FD;
}