33 lines
468 B
CSS
33 lines
468 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap")
|
|
layer(base);
|
|
|
|
@import "./tokens.css";
|
|
@import "tailwindcss";
|
|
|
|
@layer base {
|
|
*,
|
|
::before,
|
|
::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Outfit, sans-serif;
|
|
background-color: #050913;
|
|
color: #ffffff;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|