Hola aquí dejo mi avance en mi caso utilice otra fuente css:
@import url('https://fonts.googleapis.com/css2?family=Kalnia+Glaze:wght@100..700&display=swap');
*{
padding: 0;
margin: 0;
}
body{
background-color: #000000;
color: #f6f6f6;
height: 100vh;
box-sizing: border-box;
}
.titulo{
color: #22d4fd;
}
.presentacion{
display: flex;
align-items: center;
margin: 10% 15%;
justify-content: space-between;
}
.presentacion__contenido{
width: 615px;
display: flex;
flex-direction: column;
gap: 40px;
}
.presentacion__contenido__titulo{
font-size: 36px;
font-family: "Kalnia Glaze", serif;
}
.presentacion__contenido__texto{
font-size: 24px;
}
.presentacion__enlaces{
display: flex;
justify-content: space-between;
}
.presentacion__enlaces__link{
width: 280px;
background-color: #22d4fd;
text-align: center;
padding: 21.5px 0;
border-radius: 16px;
font-size: 24;
font-weight: 600;
text-decoration: none;
color: #000000;
}