* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	background-color: #d3d3d3;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
#container {
	max-width: 970px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px 20px;
}
.imgBox img {
	max-width: 200px;
}
h1 {
	text-align: center;
}
@media (max-width: 500px) {
	body {
		align-items: flex-start;
		padding-top: 30px;	
	}
	.imgBox img {
		max-width: 120px;
	}
	h1 {
		font-size: 20px;
	}
}
