```Olá, gostaria de compartilhar algo que fiz... é bem básico, iniciei o curso a poucas semanas.....
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="css/estilo.css">
</head>
<body>
<main class="apresentacao">
<section class="texto__imagem">
<h1 class="texto"><strong>DÊ O PRIMEIRO PASSO PARA TRANSFORMAR SUA CARREIRA</strong></h1>
<p class="texto__link">
<a class="link" href="#">BAIXAR E-BOOK GRÁTIS</a>
<a class="link" href="#">BAIXAR E-BOOK PAGO</a>
</p>
</section>
<img src="imagem/imagemtumblr.png" alt="moça no computador" width="500px">
</main>
</body>
</html>
CSS:
*{
margin: 0%;
padding: 0%;
}
body{
background-color: #A27B5C;
}
.apresentacao{
align-items: center;
font-size: 25px;
padding: 5% 3% 0% 5%;
display: flex;
justify-content: space-between;
}
.texto__imagem{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
}
.texto{
padding: 2% 0% 2% 0%;
background-color: burlywood;
text-align:center;
}
.texto__link{
padding: 22%;
display: flex;
flex-direction: column;
gap: 20px;
}
.link{
text-decoration: none;
color: black;
padding: 20px;
background-color:burlywood;
border-radius: 10px;
}
.link:hover{
background-color: dimgray;
}