GitHub: https://github.com/Alekzinho/Super-estilizando-o-projeto-com-CSS
Imagem do Portfólio

Imagem do portfólio com hover do Instagram ativado

Imagem do portfólio com o hover do GitHub ativado

Código em HTML
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Portfólio de Alex Olmedo</title>
</head>
<body>
    <header>
        <h1>PORTFÓLIO</h1>
    </header>
    <main>
        <h2> Olá, sou o <strong>Alex Olmedo</strong></h2>
        <section>
            <img src="eu-estudando-gemini.jpg" alt="Uma foto minha programando (gerado pelo Gemini)">
        </section>
        <p>Estou estudando programação através da plataforma da Alura, e estou disposto a ajudar e receber seu feedback!</p>
    </main>
    <footer>
        <h3>Conheça meus projetos</h3>
        <section class="container">
            <a class="instagram" href="https://www.instagram.com/alekin_dev/#"><img class="logo-Insta" src="Instagram_logo.png" alt="Logo do Instagram"></a> <a class="github" href="https://github.com/Alekzinho"><img class="logo-Git" src="GitHub_logo.png" alt="Logo do GitHub"></a>
        </section>
    </footer>
</body>
</html>
Código em CSS
html, body {
    
    color: white;
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    text-align: center;
    background-color: black;
}
main {
    background-color: rgb(10, 10, 10);
}
h2 {
    text-align: center;
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    width: 350px;
    border-radius: 10px;
    border: transparent;
    border-style: solid;
    border-color: rgb(168, 168, 168, 0.2);
}
p {
    text-align: center;
    font-size: 23px;
    font-weight: none;
}
footer {
    background-color: rgb(69, 5, 97);
    flex-grow: 1;
}
h3 {
    font-size: 22px;
    text-align: center;
    color: ghostwhite;
}
.container {
    flex-direction: row;
}
a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: aliceblue;
    padding: 10px;
    margin: 25px;
    height: 30px;
    width: 160px;
    border: 2px;
    border-radius: 5px;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
}
.logo-Insta {
    border-style: none;
    height: 180px;
    color: whitesmoke;
}
.instagram {
    border-style: solid;
    border-color: whitesmoke;
}
.instagram:hover {
    background-color:  rgb(230, 82, 119);
    border-style: solid;
    border-color: rgb(240, 248, 255, 0.5);
}
.logo-Git {
    border-style: none;
    height: 65px;
    color: whitesmoke;
}
.github {
    border-style: solid;
    border-color: #f5f5f5;
}
.github:hover {
    background-color:  rgb(27, 27, 73);
    border-style: solid;
    border-color: rgb(240, 248, 255, 0.5);
}