html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./styles/style.css">
</head>
<body>
    <header class="header">
        <nav class="header__menu">
            <a class="header__menu__link" href="index.html">Home</a>
            <a class="header__menu__link" href="about.html">Sobre mí</a>
            <a class="header__menu__link" href="curriculum.html">Curriculum</a>
        </nav>
    </header>
    <main class="presentacion">
        <section class="presentacion__contenido">
            <h1 class="presentacion__contenido__titulo">Curriculum</h1>
            <p class="presentacion__contenido__texto">Hola soy Valentina, tengo 21 años y estoy adentrando al mundo de la programación, 
                que veo que es un campo que me interesa mucho.
            </p>
            <p class="presentacion__contenido__texto">Estoy cursando el 9 ciclo de <strong>Ingeniería de Sistemas</strong> y algunos lenguajes que manejo son el python, sql, excel, y ahora me está interesando el mundo de full-stack.
            </p>
            <p class="presentacion__contenido__texto">
            </p> 
        </section>
        <img class="img" src="./assets/full.jpg" alt="Foto de Ana García desarrolando un proyecto">
    </main>
    <footer class="footer">
        <p>Desarrollado por Valentina Peralta</p>
    </footer>
</body>
</html>
css
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');
* {
    padding: 0;
    margin:0;
}
body{
    box-sizing: border-box;
    background-color: #000000;
    color: #F6F6F6;
}
.header{
    padding: 2% 0% 0% 15%;
}
.header__menu {
   display: flex;
   gap: 80px;
}
.header__menu__link{
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color:#22D4FD;
    text-decoration: none;
}
.header__menu__link:hover {
    color: #c8ddf3;
}
.presentacion {
    padding: 6.3% 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    flex: 1;
}
.presentacion__contenido{
    width: 615px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.presentacion__contenido__titulo{
    font-size: 36px;
    font-family: 'Krona One', sans-serif;
}
.titulo-destaque {
    color: #22D4FD; ;
}
.presentacion__contenido__texto{
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}
.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;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.presentacion__enlaces__link:hover{
    background-color: #272727;
}
.footer{
    background-color: #64e0fc;
    padding: 27px;
    color: #000000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
}
.section{
    align-items: flex-start;
}
.img{
    padding: 0% 0% 0% 4%; 
}