* {
	box-sizing: border-box !important;
}

body {
	color: white;
	background: linear-gradient(135deg, #1a202c 0%, #2b353b 100%);
	background-color: #1A202C;
	font-family: "Atkinson Hyperlegible", sans-serif;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
}

h1 {
	margin: 16pt 0;
    color: white;
}

h2 {
	margin: 16pt 0;
    color: white;
}

p {
    color: white;
}

main {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

a {
	color: #1a202c;
	background-color: white; 
	margin: 8pt 16pt;
	padding: 8pt 16pt;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	border-radius: 4pt;
}

.m-16 {
	margin: 16pt 32pt;
}

.w-50 {
	width: unset; 
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: center;
}

.separator {
	display: none;
}

.row {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: column;
}

.separator {
	background-color: white;
	width: 2pt;
}

.image {
	height: 200px;
}

.image > img {
	height: 100%;
	width: 100%;
}

@media only screen and (min-width: 600px) {
	.row {
		flex-direction: row !important;
	}

	.image {
		margin-left: auto;
		height: 16vh;
	}

	.text-right {
		text-align: right;
	}

	.text-left {
		text-align: left;
	}

	.w-50 {
		width: 50%;
	}
}
