32 lines
388 B
CSS
32 lines
388 B
CSS
:root {
|
|
color: #272522;
|
|
background: #f7f6f2;
|
|
font-family: ui-sans-serif, system-ui, sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.app-shell {
|
|
display: grid;
|
|
min-height: 100vh;
|
|
place-content: center;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.app-shell h1 {
|
|
margin: 0 0 0.75rem;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.app-shell p {
|
|
margin: 0;
|
|
color: #6b6760;
|
|
}
|