23 lines
233 B
CSS
23 lines
233 B
CSS
|
|
body
|
||
|
|
{
|
||
|
|
background-color: rgb(29,41,75);
|
||
|
|
}
|
||
|
|
h1, h2
|
||
|
|
{
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
h3, ol, ul, li, p
|
||
|
|
{
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
h3, ol, ul, li
|
||
|
|
{
|
||
|
|
text-align: center;
|
||
|
|
list-style-position:inside;
|
||
|
|
}
|
||
|
|
img
|
||
|
|
{
|
||
|
|
display: block;
|
||
|
|
margin: auto;
|
||
|
|
}
|