22 lines
590 B
CSS
22 lines
590 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
|
|
@import "header.css";
|
|
@import "anchoring.css";
|
|
@import "carousel.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
--body-BackgroundColor: #f5f5f5;
|
|
--primaryColor: #124498;
|
|
--header-BackgroundColor: var(--primaryColor);
|
|
--header-textColor: #ffd39c;
|
|
--header-Height: 5.375rem;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Questrial', sans-serif;
|
|
background-color: var(--body-BackgroundColor);
|
|
} |