HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portifólio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<p>Olá! Sou Rafael Nunes, aspirante a <strong>desenvolvedor Front-end</strong>, <strong>psicólogo clínico</strong> e <strong>especialista em fenomenologia existencial</strong>.<br> De pessoas eu entendo, e do que elas pensam também. Que tal trocarmos uma ideia?</p>
<a href="https://instagram.com/rafonunes" target="blank">Instagram</a>
<a href="https://github.com/Psychorafo" target="blank">Github</a>
<img src="Sem título.png" alt="Foto de Rafael Nunes">
</main>
<footer></footer>
</body>
</html>
CSS
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: black;
color: white;
text-align: center;
}
strong {
color: #BD8E73;
font-style: bold;
}
a {
color: #BD8E73;
text-decoration: none;
margin: 10px;
align-self: right;
}
Os links na tag "< a >" não seguem a centralização aqui! gostaria de botar eles alinhados a foto, o que estou fazendo de errado? Desde já, muito obrigado!