* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: sans-serif;
}

body, html {
	height: 100%;
}

.container {
	display: flex;
	height: 100vh;
	flex-direction: column;
}

.column {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	background-color: #d07500;
	color: white;
}
.column:first-child {
	background-color: #008cba;
}

.content {
	text-align: center;
}

h1 {
	font-weight: normal;
	font-size: 2.3rem;
	line-height: 1;
}
h3 {
	font-weight: normal;
	font-size: 1.5rem;
	padding-bottom: 0.5rem;
	line-height: 1;
}
p {
	font-weight: normal;
	font-size: 1.1rem;
	padding-top: 1rem;
	line-height: 1.4;
}

p a {
	display: inline-block;
	color: white;
	text-decoration: none;
	border-width: 0 0 0.15rem 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.3);
}
p a:hover {
	border-style: solid;
	border-color: black;
}

/* Mobile layout - stack columns vertically */
@media (min-width: 769px) {
	.container {
		flex-direction: row;
	}
}
