22 lines
270 B
CSS
22 lines
270 B
CSS
*,
|
|
*::before,
|
|
*::after {
|
|
background-color: black;
|
|
color: whitesmoke;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: auto;
|
|
padding: 5em;
|
|
max-width: 500px;
|
|
}
|
|
|
|
pre {
|
|
font-size: 1.5em;
|
|
}
|