|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
@apply text-blue-dark;
|
|
}
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-6xl font-bold
|
|
}
|
|
|
|
h2 {
|
|
@apply text-4xl font-semibold
|
|
}
|
|
|
|
h3 {
|
|
@apply text-2xl font-medium
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.circle-title {
|
|
@apply text-9xl font-bold
|
|
}
|
|
}
|
|
|