24 lines
468 B
CSS
24 lines
468 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "Quicksand", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-style: normal;
|
|
font-weight: 550;
|
|
color: black;
|
|
text-decoration: none;
|
|
--background-color: #eaeaea;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body, #__nuxt {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
#app {
|
|
min-height: 100%;
|
|
width: 100vw;
|
|
} |