21 lines
336 B
CSS
21 lines
336 B
CSS
body {
|
|
margin: 0;
|
|
background-color: #fff;
|
|
font-family: "Inter", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
#preload {
|
|
display: none;
|
|
}
|
|
|
|
#loader-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|