Personal Website for @jaspermayone.com
jaspermayone.com
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5:root {
6 --foreground-rgb: 0, 0, 0;
7 --background-start-rgb: 214, 219, 220;
8 --background-end-rgb: 255, 255, 255;
9}
10
11@media (prefers-color-scheme: dark) {
12 :root {
13 --foreground-rgb: 255, 255, 255;
14 --background-start-rgb: 0, 0, 0;
15 --background-end-rgb: 0, 0, 0;
16 }
17}
18
19@font-face {
20 font-family: "Cute Notes";
21 src:
22 url("/fonts/CuteNotes.woff2") format("woff2"),
23 url("/fonts/CuteNotes.ttf") format("ttf");
24}
25
26body {
27 /* font-family: "Cute Notes", sans-serif; */
28 width: 100vw;
29 height: 100vh;
30}
31
32@layer utilities {
33 .text-balance {
34 text-wrap: balance;
35 }
36}