body, html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background: white;	
	color: black;
	font-family: Helvetica, Arial, sans-serif;
	margin: 0;
}

.container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 4.5cm;
}

.row {
	align-items: start;
	display: grid;
	gap: 20px;
	grid-template-columns: 2fr 1fr;	
}

.columnText {
	font-size: 17px;
	line-height: 1.7;
	text-align: left;
}

.floatRight {
	float: right;
}

.underline {
	text-decoration: underline;
	text-decoration-color: black;
	text-underline-offset: .4rem;
	text-decoration-thickness: 1.4px;
}	

ul {
	padding: 0;
}

li {
	list-style: none;
	margin-bottom: 1.2rem;
	padding-left: 1.3rem;
	position: relative;
}


li::before {
	content: "–";
	left: 0;
	position: absolute;
}

#image {
	margin-top: 40px;
}


/* SVG colors  */

.st0 {
	fill:#99CCFF;
}

.st1 {
	fill:#FFFFFF;
}


/* Layout for mobile version  */

@media (max-width: 900px) {
	body, .columnText, {
		font-size: 16px;
	}

	.container {
		margin: 2rem;
	}

	.row {
		grid-template-columns: 1fr;
	}

	.floatRight {
		float: left;
	}
}