35 lines
485 B
CSS
35 lines
485 B
CSS
body {
|
|
margin: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: black;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: gray;
|
|
}
|
|
|
|
a {
|
|
color: #bb0000;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
color: #bb0000;
|
|
}
|
|
|
|
p {
|
|
color: lightgray;
|
|
max-width: 300px;
|
|
margin: auto;
|
|
text-align: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
li {
|
|
color: lightgray;
|
|
max-width: 300px;
|
|
marg: auto;
|
|
margin-bottom: 6px;
|
|
}
|