body,
html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: #fff;
	color: #333;
	text-align: center;
}
img {
	max-width: 100%;
	height: auto;
}
.container {
	max-width: 600px;
	padding: 20px;
}
.logo {
    margin-bottom: 30px;
}
.heading {
	margin: 0;
	font-size: 1.8em;
}
.subheading {
	margin-top: 10px;
	font-size: 1.3em;
	color: #3ea5e6;
    font-style: italic;
}
.address,
.hours {
	margin-top: 30px;
	font-size: 1.1em;
	line-height: 1.3;
}
.address {
    position: relative;
    padding-top: 30px;
}
.address::before {
    display: block;
    width: 100px;
    height: 4px;
    background-color: #efefef;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
}
.hours {
    font-size: 1em;
}
footer {
	margin-top: 50px;
	font-size: 0.9em;
	color: #777;
}
@media (min-width: 600px) {
	.heading {
		font-size: 2.2em;
	}
}
