31 lines
466 B
CSS
31 lines
466 B
CSS
|
@import "../fonts/inter/inter.css";
|
||
|
|
||
|
*, *::before, *::after {
|
||
|
box-sizing: content-box;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--brand: #66cc00;
|
||
|
|
||
|
--text: #000000de;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Inter var", "Inter", sans-serif;
|
||
|
color: var(--text);
|
||
|
}
|
||
|
|
||
|
h1, h2, h3 {font-weight: 250}
|
||
|
h1 {
|
||
|
font-size: 3rem;
|
||
|
letter-spacing: -.1rem;
|
||
|
}
|
||
|
h2 {font-size: 2.3rem}
|
||
|
h3 {font-size: 1.7rem}
|
||
|
h4, h5, h6 {font-weight: 700}
|
||
|
h4 {font-size: 1.2rem}
|
||
|
h5 {font-size: 1rem}
|
||
|
h6 {font-size: .8rem}
|
||
|
|
||
|
p {font-weight: 350}
|