Realizei os exercicios mas deixei o projeto mais com minha cara.
<!doctype html>
<html lang="BR-pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>Estilizações</title>
</head>
<body>
<div class="card">
<h1>Bem-vindo!</h1>
<h2 class="apresentacao__links__subtitulo">Acesse minhas redes:</h2>
<div class="apresentacao__links">
<a href="https://instagram.com" target="_blank">Instagram</a>
<a href="https://github.com" target="_blank">Github</a>
</div>
</div>
</body>
</html>
@import url("https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #135a3c;
font-family: "TASA Explorer", sans-serif;
}
.card {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
}
h1 {
font-size: 24px;
margin-bottom: 15px;
color: #333;
}
.apresentacao__links__subtitulo {
font-size: 18px;
margin-bottom: 20px;
color: #555;
}
.apresentacao__links {
display: flex;
flex-direction: column;
gap: 12px;
}
.apresentacao__links a {
text-decoration: none;
flex-direction: row;
background-color: #333;
color: #fff;
padding: 12px;
border-radius: 8px;
font-size: 16px;
}
.apresentacao__links a:hover {
background-color: #555;
}