30 lines
496 B
CSS
30 lines
496 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@import "assets/fonts/Hind/font-hind.css";
|
|
@import "assets/fonts/Montserrat/font-montserrat.css";
|
|
@import "assets/fonts/Poppins/font-poppins.css";
|
|
|
|
* {
|
|
padding: 0 auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
html, body {
|
|
width: 100vw;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
position: absolute;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
|
|
p {
|
|
font-family: "Hind", sans-serif;
|
|
}
|