37 lines
429 B
CSS
37 lines
429 B
CSS
*, *::before, *::after {
|
|
background-color: #181818;
|
|
color: #e7e7e7;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
padding: 2em;
|
|
}
|
|
|
|
h1, h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 1em;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #87afaf;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|