* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: none;
	text-decoration: none;
	font-size: 100%;
	font: inherit;
	color: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

:root {
	--text-color: rgb(238, 238, 238);
	--primary-color: #7268c8;
	--primary-color-light: #b4a5ff;
	--primary-color-dark: #5d54b2;
	--secondary-color: rgb(69, 188, 102);
	--background-color: #23262b;
	--background-color2: #2c313b;
}

html {
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text-color);
	background-color: var(--background-color);
}


router-link {
	display: inline-flex;
}

router-link a {
	width: 100%;
}

/* Utils */
.flex {
	display: flex;
}

.flex.row {
	flex-direction: row;
}

.flex.column {
	flex-direction: column;
}

.flex.center {
	align-items: center;
	justify-content: center;
}

.flex:not(.column).h-center,
.flex.row.h-center,
.flex.column.v-center {
	justify-content: center;
}

.flex:not(.column).v-center,
.flex.row.v-center,
.flex.column.h-center {
	align-items: center;
}

.dot {
	min-width: 3px;
	min-height: 3px;
	margin: 0 8px;
	border-radius: 50%;
	background-color: white;
	opacity: 0.4;
}