globalStyles.ts•567 B
import { createGlobalStyle } from 'styled-components';
export const GlobalStyle = createGlobalStyle`
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Mulish:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgba(9, 12, 19, 1);
color: #fff;
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
button {
cursor: pointer;
border: none;
outline: none;
}
a {
text-decoration: none;
color: inherit;
}
`;