mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
20 lines
281 B
CSS
20 lines
281 B
CSS
|
body {
|
||
|
line-height: 1.5;
|
||
|
background-color: #181818;
|
||
|
font-family: sans-serif;
|
||
|
color: whitesmoke;
|
||
|
padding: 2em;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
min-height: 100vh;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin-top: 1em;
|
||
|
}
|