41 lines
979 B
HTML
41 lines
979 B
HTML
<!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>
|