add index.html and styles.css

This commit is contained in:
3thernitydev
2024-10-22 11:03:16 +04:00
parent 138c975578
commit 51eea29f07
2 changed files with 28 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
* {
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;
}