22 lines
292 B
CSS
22 lines
292 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;800;900&display=swap");
|
|
|
|
:root {
|
|
--main-font-color: #000000;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-color: #5fd4b1;
|
|
padding: 0.8rem;
|
|
|
|
font-family: Jost;
|
|
}
|