import { createGlobalStyle } from 'styled-components'

export const StyledGlobal = createGlobalStyle`
  body {
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
  }
`
