21 lines
492 B
CSS
21 lines
492 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "Outfit", sans-serif;
|
|
font-optical-sizing: auto;
|
|
box-sizing: border-box;
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
html, body, #__nuxt {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
html {
|
|
background-color: #151515;
|
|
} |