35 lines
585 B
Text
35 lines
585 B
Text
html,
|
|
body,
|
|
#root,
|
|
.App {
|
|
display: flex;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'MonumentGrotesk-Regular', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
Ubuntu, Cantarell, Oxygen, Roboto, Helvetica, Arial, sans-serif;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
font-size: 13px;
|
|
color: #000;
|
|
letter-spacing: 0.01em;
|
|
line-height: 1.3;
|
|
font-weight: 400;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-tap-highlight-color: transparent; /* for removing the highlight */
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
a:visited {
|
|
color: initial;
|
|
}
|