Edit Font

This commit is contained in:
Lucàs
2023-03-09 13:46:46 +01:00
parent 8e3151c8ca
commit a40df638c0
3 changed files with 16 additions and 2 deletions
+13
View File
@@ -1,8 +1,21 @@
/* Reset CSS */
html {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 90vh;
background-color: whitesmoke;
display: grid;
place-content: center;
}
p {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 200px;
text-align: center;
}