16 lines
291 B
CSS
16 lines
291 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
|
|
sans-serif;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: whitesmoke;
|
|
background-color: black;
|
|
}
|