import { createGlobalStyle } from 'styled-components'; const GlobalStyles = createGlobalStyle` * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; outline: none; } ul { list-style: none } `; export default GlobalStyles;