import { createGlobalStyle } from 'styled-components/macro' export const GlobalStyles = createGlobalStyle` *, *:before, *:after { box-sizing: border-box; } body { min-height: 100vh; margin: 0; padding: 0; font-family: Montserrat, Tahoma, sans-serif; font-size: 12px; line-height: 12px; color: #000; } h1, h2, h3, h4, h5, h6, p, ul, li { margin: 0; padding: 0; font-size: 12px; line-height: 12px; } ul, li { list-style: none; } a { text-decoration: none; color: #000; } fieldset { margin: 0; min-width: 0; padding: 0; border: 0; } button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } `