import { createGlobalStyle } from "styled-components"; export const GlobalStyle = createGlobalStyle` *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Inter', sans-serif; background-color: #000000; color: #ffffff; line-height: 1.6; } `;