Personal-site/styles/global.css

46 lines
842 B
CSS
Raw Normal View History

2020-06-14 09:06:49 +00:00
/* Import fonts here */
@import url("https://fonts.googleapis.com/css2?family=Muli:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Global variables */
:root {
--primary: #ffab70;
--secondary: #f97583;
--tertiary: #b392f0;
--quaternary: #79b8ff;
--quinary: #b8eb78;
--dark: #1f1e22;
--lightDark: #2c2c2c;
--darkLight: #959da5;
--light: #d1d5da;
--fontFamily: Muli, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--dark);
color: var(--light);
font-family: var(--fontFamily);
}
.wrapper {
min-height: 100vh;
padding: 0 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
margin: 0;
line-height: 1.15;
font-size: 4rem;
}