16 lines
191 B
CSS
16 lines
191 B
CSS
:root {
|
|
--font-manrope: var(--font-manrope);
|
|
--font-clash: var(--font-clash);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: white;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
}
|