.html
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="texto">
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<p>Olá! Sou Leo Remerson, desenvolvedor Front-end com especialidade em <span>HTML</span>, <span>CSS</span> e <span>JavaScript</span>. Ajudo pequenos negócios e designers a colocarem em prática boas ideias. Vamos conversar?</p>
<div class="botoes">
<a href="https://instagram.com/leo.remerson">Instagram</a>
<a href="https://github.com/leoremerson">GitHub</a>
<a href="https://linkedin.com/in/leo-remerson">LinkedIn</a>
</div>
</div>
<div class="imagem-container">
<img src="imagem.png" alt="Leo programando">
</div>
</main>
</body>
</html>
.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: rgb(0, 0, 35);
color: #fff;
text-align: center;
padding: 50px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
main {
display: flex;
align-items: center;
justify-content: center;
max-width: 900px;
gap: 40px;
}
.texto {
max-width: 400px;
text-align: left;
}
h1 {
font-size: 2rem;
font-weight: bold;
line-height: 1.3;
color: beige;
}
h1 strong {
color: #EA5A36;
}
p {
font-size: 1.1rem;
line-height: 1.5;
margin-top: 40px;
color: #ccc;
}
p span {
color: greenyellow;
}
.botoes {
margin-top: 50px;
}
.botoes a {
display: inline-block;
background-color: #00c8ff;
color: black;
padding: 12px 24px;
font-weight: bold;
border-radius: 8px;
text-decoration: none;
margin-right: 10px;
transition: 0.3s;
}
.botoes a:hover {
background-color: #0098cc;
}
.imagem-container {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.imagem-container img {
width: 300px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
}
.imagem-container::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
border: 2px solid #EA5A36;
border-radius: 10px;
top: 5px;
left: 5px;
z-index: -1;
}