@charset "utf-8";

html {
	border-top: #C4E1FF 10px solid;
	margin: 0;
	padding: 0;
}
body {
	font-family: Georgia, serif;
	text-align:center;
	margin: 0 40px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-size: 26px;
	color: #222222;
}
h1 {
	font-size: 70px;
	font-weight: lighter;
	display: block;
	margin: 60px 0;
}
h1>span {
	font-size: 16px;
}
.about {
	margin-bottom: 40px;
	padding-top: 40px;
	border-top: #cccccc 1px dashed;
}
footer {
	border-top: #d9d9d9 1px solid;
	margin-top: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12px;
}
.visible-sm {
  display: none !important;
}
@media (max-width: 600px) {
	body {
		font-size: 18px;
		margin: 0 20px;
	}
	h1 {
		font-size: 46px;
	}
	.visible-sm {
		display: block !important;
	}
}