14 lines
199 B
CSS
14 lines
199 B
CSS
body {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
font-family: "sans-serif";
|
|
}
|
|
|
|
a, a:visited, a:active {
|
|
color: #00ffff;
|
|
}
|
|
|
|
.cntrbox {
|
|
display: grid;
|
|
place-content: center;
|
|
}
|