html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}
a {
	color: #6a8fcc;
	text-decoration: none;
}
body {
	background-color: #c3cfe2;
	background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: #333333;
	font-family: 'Raleway', 'Roboto', 'Helvetica Neue', arial, sans-serif;
	font-size: 20px;
	line-height: 1.6;
	padding: 1.5em 1em 1em;
	min-height: 100vh;
}
@media screen and (max-width: 640px) {
	body {
		font-size: 0.8em;
	}
}
.name {
	font-size: 1.3em;
	font-weight: bolder;
	line-height: 1;
	margin-bottom: 0.1875em;
}
.profileBox {
	background-color: #ffffff;
	border-radius: 5px;
	max-width: 800px;
	margin: auto;
	padding: 1em;
}
.profileBox + .profileBox {
	margin-top: 1.5em;
}
.profileBox-columns {
	display: flex;
}
.nonBreak {
	display: inline-block;
}
.profileText {
	max-width: 80%;
	padding-right: 1em;
}
.profileImage {
	background-image: url(../img/profile.jpg);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
	flex: auto;
	margin-left: auto;
}
.title {
	font-size: 1.2em;
	font-weight: bolder;
	line-height: 1;
	margin-bottom: 0.25em;
}
