::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;
}

.nav_bar .secondary {
	display: flex;
	gap: 8px;
	align-items: center;
}
.nav_bar .secondary.mobile,
.nav_bar .secondary.mobile li {
	font-weight: 500;
	font-size: 1.5rem;
	color: #fff;
}

.mobile_home {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.mobile_home p {
	text-align: center;
}



