<!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>Portfólio de Mauro Cahú</title>
<link rel="stylesheet" href="style.css"> <!-- Vinculando o CSS -->
</head>
<body>
<header>
<h1>Bem-vindo ao meu portfólio!</h1>
</header>
<main>
<p>Oi, sou <strong>Mauro Cahú</strong>, desenvolvedor web apaixonado por criar soluções digitais eficientes. Explore meus projetos e entre em contato!</p>
<img src="ÁGUIA_FALCÃO_1.png" alt="Mauro Cahú - Desenvolvedor Web" class="foto-perfil">
<div class="links">
<a href="https://www.linkedin.com/in/mauro-cahu-159a05273/" target="_blank">LinkedIn</a>
<a href="https://github.com/MRCahu" target="_blank">GitHub</a>
<a href="mailto:maurocahu@gmail.com">Email</a>
</div>
</main>
<footer>
<p>© 2023 Mauro Cahú. Todos os direitos reservados.</p>
</footer>
</body>
</html>
/* Estilos Gerais */
body {
background-color: #f4f4f4;
color: #333;
font-family: 'Arial', sans-serif;
}
h1 {
color: #1a73e8; /* Cor azul para o título */
text-align: center;
}
.foto-perfil {
width: 150px;
height: 150px;
border-radius: 50%;
border: 2px solid #333;
margin-top: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Estilizando os links */
.links a {
margin: 10px;
padding: 8px 20px;
background-color: #22D4FD;
color: white;
text-decoration: none;
border-radius: 5px;
}
.links a:hover {
background-color: #1a7dc7;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
}