Gostei bastante do exercício. fiz algumas alterações no projeto... ficou assim
HTML:
<!DOCTYPE html>
<html lang="pt-br" >
<head>
<meta charset="UTF-8">
<title>Manipulando o DOM - Aula 2</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h1 class="page-title" id="titulo">
Manipulando elementos no DOM</h1>
<button id="calcular">Fui Clicado ?</button>
<h1 class="resultado"></h1>
<h2 class="resultado"></h2>
</div>
<a href="https://alura.com.br/" target="_blank"><img src="https://www.alura.com.br/assets/img/home/alura-logo.svg" alt="" class="alura-logo"></a>
<script src="./script.js"></script>
</body>
</html>
Note que eu coloquei um id="titulo" na tag h1 e alterei o texto do botão, ficando um "Fui clicado?".
CSS:
* {
margin: 0;
padding: 0;
}
body {
font-family: "Roboto Mono", monospace;
min-height: 400px;
background-color: #000000;
background-size: 80vh;
color: rgb(255, 255, 255);
background-image: url("https://media1.giphy.com/media/eK7lrO3X8cxyHLJyfj/giphy.gif?cid=ecf05e47e3fs68r79um7v7xpoteqisl0tf9wwvv3nu4u4tjv&rid=giphy.gif&ct=g");
background-size: cover cover;
background-repeat: no-repeat;
}
.container {
text-align: center;
padding: 10px;
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
}
.alura-logo {
width: 40px;
position: absolute;
top: 10px;
right: 10px;
}
button {
margin-left: 10px;
font-size: 24px;
font-family: "Futura Lt BT", sans-serif;
background-color: black;
background-repeat: no-repeat;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
outline: none;
padding: 8px 20px 8px 20px;
color: white;
box-shadow: 0px 0px 5px gray;
border-radius: 5px 5px 0 0;
border: none;
transition: 500ms;
opacity: 0.8;
margin-top: 30px;
margin-left: 30px;
}
button:hover {
color: white;
background-color: gray;
}
button:active {
color: black;
background-color: white;
}
.resultado {
margin-bottom: 30px;
}
.container {
display: flex;
justify-content: center;
}
fiz alguns ajustes e troquei o background.
JavaScript:
const botao = document.querySelector('#calcular');
var titulo = document.getElementById('titulo');
botao.addEventListener('click', () => {
console.log('Fui Clicado.');
titulo.innerText = 'Parabéns Você clicou!'});
quando aperta o botão além do aviso no console, ele também altera o titulo =).
Espero que gostem.