16 lines
359 B
CSS
16 lines
359 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
|
||
|
|
|
||
|
|
:root {
|
||
|
|
/* breakpoints */
|
||
|
|
--breakpoint-md: 768px;
|
||
|
|
--breakpoint-lg: 1024px;
|
||
|
|
|
||
|
|
/* colors */
|
||
|
|
--white: #ffffff;
|
||
|
|
--primary: #094654;
|
||
|
|
--secondary: #00B4E1;
|
||
|
|
--yellow: #ffab0a;
|
||
|
|
--footer-bg: #92CDDB;
|
||
|
|
--background: #DDE9EC;
|
||
|
|
--button-color:#0F6472;
|
||
|
|
}
|