15 lines
246 B
CSS
15 lines
246 B
CSS
* {
|
|
font-family: "Alfa Slab One", serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|