#demoContainer {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	max-width: 148rem;
	margin: 0 auto;
}

#demoTop, #demoBottom {
	border: 4px dashed #ccc;
	text-align: center;
	padding: 2rem;
}

#demoTop {
	width: 100%;
	border-radius: 2rem 2rem 0 0
}

#demoMiddle {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

#demoLeft {
	width: 20rem;
	margin-right: 1rem;
}

#demoBottom {
	width: 100%;
	border-radius: 0 0 2rem 2rem;
}

#demoRight {
	width: 20rem;
	margin-left: 1rem;
}


p.largeText {
	font-size: 3rem;
	font-weight: bold;
}

p.smallText {
	font-size: 1.8rem;
}

p.introText {
	font-size: 1.6rem;
}

@media screen and (max-width: 1280px) {
	#demoMiddle {
		justify-content: stretch
	}
	#demoRight {
		display: none;
	}

	#demoLeft {
		width: 100%;
		max-width: 20rem;
	}
}

@media screen and (max-width: 1160px) {
	#demoLeft {
		display: none;
	}
	#demoMiddle {
		display: block;
	}
}

@media screen and (max-width: 760px) {
	#demoContainer {
		padding: 1rem;
	}
	#demoTop, #demoBottom {
		border-radius: 0;
		border-width: 2px;
	}
}

@media screen and (max-width: 560px) {
	#demoContainer {
		padding: 0;
	}

	#demoTop {
		border-width: 0 0 2px 0;
	}
	#demoBottom {
		border-width: 2px 0 0 0;
	}
}