24 lines
674 B
CSS
24 lines
674 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Outfit", sans-serif;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
:root {
|
|
--color-primary: #f5f5f5;
|
|
--color-secondary: #19253a;
|
|
--color-tertiary: #1d4ed8;
|
|
--text-color: #333;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|