Cordial saludo
A continuación adjunto respuesta.
Muchas Gracias
style.css
.presentacion__enlaces {
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
}
.presentacion__enlaces__subtitulo {
font-family: 'Krona One', sans-serif;
font-weight: 400;
font-size: 24px;
}
.presentacion__enlaces__link {
background: none;
color: #F6F6F6;
border: 2px solid #22D4FD;
width: 378px;
border-radius: 8px;
text-align: center;
padding: 12px 0;
text-decoration: none;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.presentacion__enlaces__link:hover {
background-color: #22D4FD;
color: #fff;
}