global.js
import { createGlobalStyle } from 'styled-components'
export const GlobalStyle = createGlobalStyle`
:root {
--primary-yellow: #fed925;
}
code {
display: block;
width: 500px;
text-align: left;
}
.center {
display: flex;
justify-content: center;
}
`