body {
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-size: 62.5%;
}

div {
	box-sizing: border-box;
}

a {
	color: #8b3c8d;
	text-decoration: none;
	border-bottom: 1px solid #D6D6D6;
}

a:hover {
	border-bottom: 1px solid #A7A7A7;
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
}

::selection {
	background: #333333;
	color: #FFFFFF;
}

.container {
	display: flex;
	overflow: hidden;
	height: 100%;
	width: 100%;
	margin: 0 auto;
}

.image {
	position: relative;
	width: 50%;
}

.image img {
	object-fit: cover;
	object-position: 100%;
	width: 100%;
	height: 100%;
}

.about {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: scroll;
	width: 50%;
	height: 100%;
	padding: 25px 50px;
}

.aboutText {
	max-width: 480px;
}

.heading {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 2.8rem;
	margin: 0.5em 0;
	letter-spacing: 0.02em;
}

.subheading {
	font-size: 1.6rem;
	text-transform: lowercase;
	letter-spacing: .05em;
	font-weight: 300;
}

.paragraph {
	margin: 25px 0;
	line-height: 1.5;
	font-size: 1rem;
}

@media (max-width: 1024px) {
	.container {
		justify-content: center;
		flex-wrap: wrap;
		height: auto;
	}

	.image {
		display: flex;
		justify-content: center;
		width: 100%;
		max-height: 500px;
		overflow: hidden;
	}

	.image img {
		align-self: flex-start;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.about {
		width: 100%;
		max-width: 700px;
		height: auto;
		padding: 20px 30px 30px 30px;
		align-items: flex-start;
		overflow: visible;
	}

	.aboutText {
		max-width: 100%;
		text-align: center;
	}

	.heading {
		font-size: 2.4rem;
		text-align: center;
	}

	.subheading {
		text-align: center;
	}

	.icons {
		text-align: center;
	}
}
