19 lines
315 B
CSS
19 lines
315 B
CSS
@import url(https://fonts.bunny.net/css?family=abel:400|cormorant:700);
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
body {
|
|
@apply bg-primary-100;
|
|
@apply text-primary-500;
|
|
@apply font-abel;
|
|
}
|
|
main {
|
|
@apply text-lg;
|
|
}
|
|
}
|