cultfifthoctet/index.html

41 lines
979 B
HTML
Raw Normal View History

2022-09-02 18:02:45 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Cult of the Fifth Octet</title>
<style>
body {
background-color: #222222;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
div.question {
display: inline-block;
font-size: 3rem;
font-weight: bold;
padding: 1.5rem;
border: 1px solid white;
}
div.answer {
display: inline-block;
font-size: 3rem;
font-weight: bold;
padding: 1.5rem;
border: 1px solid white;
}
</style>
</head>
<body>
<section>
<div class="question">Expect the Fifth Octet</div>
</section>
</body>
</html>