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