html,
body {
	width: 100%;
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	height: 100%;
	padding: 0;
}

.flex-column-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex-row-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.full-width {
	width: 100%;
}