Está bem simples ainda, não sei o que colocar muito. Mas tá assim:
HTML:
<!DOCTYPE html>
<html lang = "pt-br">
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title> Currículo </title>
<link rel = "stylesheet" href = "styles/style.css">
</head>
<body>
<header class = "cabecalho">
<nav class = "cabecalho__navegacao">
<a class = "cabecalho__navegacao__link" href = "index.html"> Home </a>
<a class = "cabecalho__navegacao__link" href = "about.html"> Sobre Mim </a>
<a class = "cabecalho__navegacao__link" href = "curriculo.html"> Currículo </a>
</nav>
</header>
<main>
<div class = "construcao">
<img src = "Assets-aula2-curso3-html-e-css-main/pngimg.com - under_construction_PNG38.png" alt = "Página em Cosntrução">
</div>
</main>
<footer class = "rodape">
<p> Desenvolvido por Victor. </p>
</footer>
</body>
</html>
CSS:
.construcao {
padding: 10%;
display: flex;
flex-direction: row;
justify-content: center;
}