@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&display=swap');

:root {
	--color-primary: #0a6b58;
	--color-secondary: #c66c80;
	--color-body-text-dark: #191a1a;
	--color-body-text-light: #f2f2f2;
	--gradient-primary: linear-gradient(45deg, #0a6b58, #0e9a7e);
}

* {
	font-family: 'IBM Plex Sans', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	line-height: 1;
	font-weight: 400;
	list-style-type: none;
	font-size: 16px;

	/* reduce bloating */
}

p strong {
	font-weight: 500;
}

button {
	background: none;
	border: 0;
	cursor: pointer;
}

p {
	line-height: 1.5;
}

body {
	height: 100vh;
}

#app {
	height: 100%;
}

html {
	font-size: 16px;
}
