You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>SMT ZELDRIS</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #000;
color: #FFF;
padding: 50px;
}

h1 {
font-size: 48px;
text-transform: uppercase;
letter-spacing: 6px;
margin-bottom: 20px;
}

.question {
font-size: 24px;
margin-bottom: 20px;
}

.answer {
font-size: 18px;
margin-bottom: 40px;
}

.highlight {
font-size: 72px;
font-weight: bold;
color: #FF9800;
letter-spacing: 12px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<h1>SMT ZELDRIS</h1>

<div class="question">Zeldris, aperte aqui para uma surpresa:</div>


<div class="answer">
<button onclick="showMessage()">Aperte aqui!</button>
</div>

<div id="message" style="display: none;">


<h1 class="highlight">SMT ZELDRIS</h1>
<p>Esta é a mensagem SMT ZELDRIS.</p>
</div>

<script>
function showMessage() {
document.getElementById("message").style.display = "block";
}
</script>
</body>
</html>

You might also like