/* Default, global styles */
* {
	margin: 0;
	padding: 0;
	border: 0;
	max-width: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: 'Source Sans 3', 'Source Sans Pro', 'Open Sans', sans-serif;
}

html,
body {
	/* Font size defined by the browser */
	font-size: 100%;
}

/* Hide the application while Vue.js is loading */
[v-cloak] {
	display: none;
}

#app {
	width: 100%;
	display: flex;
	min-height: 100vh;
	background: #f8f9fc;
}

/* Apply default transition to links */
a {
	transition: 0.25s;
}
