22 lines
288 B
CSS
22 lines
288 B
CSS
|
|
html {
|
|
margin: 0 auto;
|
|
max-width: 40rem;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
background-color: black;
|
|
color: hotpink;
|
|
max-width: 120ch;
|
|
border: 1rem double purple;
|
|
padding: 1rem;
|
|
}
|
|
|
|
#title {
|
|
text-align: center;
|
|
}
|
|
|
|
.subtitle {
|
|
font-style: italic;
|
|
}
|