O resultado do projeto até agora. Pesquisei um pouco por fora para fazer o efeito neon e destacar melhor as palavras destacadas.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet"href="style.css">
</head>
<body>
<header></header>
<main>
<h1>Eleve seu negócio digital a outro nível <strong> um Front-end de qualidade!</strong></h1>
<p>Olá! Sou <strong>Vitor Souza</strong> , futuro desenvolvedor Front-end com especialidade em Python, Javascript, HTML e CSS. Ajudo pequenos negócios e designers a colocarem em prática boas ideias. Vamos conversar?</p>
<a href="https://www.instagram.com/vitor232/"><span>Instagram</span></a>
<a href="https://github.com/BadWolf232"><span>Github</span></a>
<img src="fotinho.jpg" alt="Foto do Vitor Souza">
</main>
<footer></footer>
</body>
</html>
body{
background-color: #143642;
color: #dad2d8;
}
strong{
color: #22D4FD;
text-shadow: 0 0 10px #22D4FD, 0 0 20px #22D4FD, 0 0 30px #22D4FD, 0 0 40px #22D4FD, 0 0 70px #22D4FD, 0 0 80px #22D4FD, 0 0 100px #22D4FD, 0 0 150px #22D4FD;
}
h1{
font-weight: bold;
}
span{
color: #22D4FD;
border: 1px solid #77848E;
padding: 10px;
}
img{
border-radius: 8px;
width: 400px;
height: 500px;
}