40 lines
544 B
SCSS
40 lines
544 B
SCSS
:root {
|
|
font-size: 16px;
|
|
|
|
--background: #111118;
|
|
|
|
--accent: #846bf7;
|
|
--accent-dim: #846bf760;
|
|
--accent-very-dim: #846bf716;
|
|
|
|
--white: #ffffff;
|
|
--white-dim: #afbcc2;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
* {
|
|
color: white;
|
|
font-family: "Nunito Sans", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
font-variation-settings:
|
|
"wdth" 100,
|
|
"YTLC" 500;
|
|
}
|
|
|
|
h1, h2, h3, h4, p {
|
|
margin: 0;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
font-size: 1rem;
|
|
}
|