File size: 1,001 Bytes
b462a9f dd2e4cf 77af7b8 d091da8 77af7b8 d091da8 b462a9f 77af7b8 b462a9f 77af7b8 b462a9f 77af7b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
@font-face {
font-family: "Action Man";
src: url("/fonts/Action-Man/Action-Man.woff2") format("woff2"),
url("/fonts/Action-Man/Action_Man_Extended-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Action Man";
src: url("/fonts/Action-Man/Action-Man-Bold.woff2") format("woff2"),
url("/fonts/Action-Man/Action_Man_Extended_Bold-webfont.woff")
format("woff");
font-weight: bold;
font-style: normal;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
#root {
min-height: 100vh;
overflow: hidden;
font-weight: bold;
}
:root {
font-family: "Action Man", Inter, system-ui, Avenir, Helvetica, Arial,
sans-serif;
line-height: 1.5;
font-weight: bold;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
|