13 lines
128 B
CSS
13 lines
128 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: 'Lexend Exa', sans-serif;
|
||
|
color: wheat;
|
||
|
}
|
||
|
|
||
|
|