/* Screen size definitions:
   mobile      < 480px
   small       481px – 768px
   medium      769px – 1024px
   large       1025px – 1279px
   extra-large >= 1280px
*/

body {
	padding: 0;
	margin: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page {
	display: flex;
	flex-direction: column;
	width: 100vw;
}

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

.container.debug {
	border: dotted 1px rgba(255, 0, 0, 0.5);
}

@media screen and (max-width: 480px) {
	.container {
		width: 100%;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	.container {
		width: 100%;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.container {
		width: 760px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
	.container {
		width: 1024px;
	}
}

@media screen and (min-width: 1280px) {
	.container {
		width: 1200px;
	}
}

.withSidePadding {
	padding: 0px var(--spacer-two);
}
