24 lines
338 B
CSS
24 lines
338 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', system-ui, sans-serif;
|
|
background-color: #fafaf8;
|
|
color: #111827;
|
|
}
|
|
|
|
::selection {
|
|
background-color: #e8f5ee;
|
|
color: #134d2b;
|
|
}
|
|
|
|
*:focus-visible {
|
|
outline: 2px solid #1a6b3c;
|
|
outline-offset: 2px;
|
|
}
|