Change font

This commit is contained in:
sepia 2025-07-28 22:51:41 -05:00
parent ad935c0b56
commit 70a9359c7f
1 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');
:root {
/* PRIMARY BRAND COLORS */
--color-primary: #c12675; /* Main brand color - primary buttons, links, highlights */
@ -76,8 +78,11 @@
--color-bg-accent: #fdf2f8; /* Very subtle pink background for special sections */
}
* {
font-family: Cabin, Arial, sans-serif;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;