GlobalStyle.tsx
1import { createGlobalStyle } from "styled-components";
2
3export const GlobalStyle = createGlobalStyle`
4 *,
5 *::before,
6 *::after {
7 box-sizing: border-box;
8 margin: 0;
9 padding: 0;
10 }
11
12 body {
13 font-family: 'Inter', sans-serif;
14 background-color: #000000;
15 color: #ffffff;
16 line-height: 1.6;
17 }
18`;