22 lines
474 B
CSS
22 lines
474 B
CSS
:root {
|
|
font-size: 10px;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
color: white;
|
|
font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
|
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Nunito";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local(""),
|
|
url("assets/fonts/nunito-v16-latin-regular.woff2") format("woff2");
|
|
}
|
|
|