<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/assets/reset.css" rel="stylesheet">
<link href="setup.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script defer src="script.js"></script>
</head>
<body>
<section>
<p>I’ve just added some text here to have another element, and also added some CSS to style it a bit—nothing too fancy.</p>
</section>
<button id="example">Click here!</button>
</body>
</html>
html, body { height: 100%; }
body {
--base: 20px;
align-items: center;
display: flex;
flex-direction: column;
font-family: sans-serif;
justify-content: center;
padding: var(--base);
row-gap: var(--base);
}
button {
background-color: deepskyblue;
border-radius: calc(var(--base) / 2);
cursor: pointer;
padding: calc(var(--base) / 2);
}