/* Default h1 font size is 40px
   Default display-2 font size is 88px 
   Default navbar height is 48px */

/* Is there a way to make the navbar bigger or smaller? 
   Aha! Increase font size!*/

.banner {
	height: 100vh !important;
}

@media only screen and (max-width: 1024px) {
	.image-center {
		width: 40%;
	}
}

@media only screen and (max-width: 912px) {
	.image-center {
		width: 50%;
	}
}

@media only screen and (max-width: 540px) {
	.image-center {
		width: 80%;
	}

	.font-weight-bold {
		font-size: 55px;
	}

	h1 {
		font-size: 30px;
	}
}

@media only screen and (max-width: 375px) {
	.image-center {
		width: 75%;
	}

	.font-weight-bold {
		font-size: 45px;
	}

	h1 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 280px) {
	.font-weight-bold {
		font-size: 35px;
	}

	h1 {
		font-size: 20px;
	}
}