* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Voyage";
}

html, body {
	background: #fff;
}

.container {
	width: 100%;
	height: 100vh;
}

.column {
	width: 50%;
	height: 100vh;
}

.left {
	position: relative;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: url("images/1.png") no-repeat 50% 50%;
	background-size: cover;
	padding: 20px;
	border-radius: 3px;
}

.right {
	display: flex;
	padding: 100px 0;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: #eee;
}

.img {
	width: 120px;
	height: 160px;
	margin: 8px;
	border-radius: 3px;
}

.img:hover {
	filter: brightness(70%);
}

.img-1 {
	background: url("images/01.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-2 {
	background: url("images/02.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-3 {
	background: url("images/03.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-4 {
	background: url("images/04.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-5 {
	background: url("images/05.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-6 {
	background: url("images/06.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-7 {
	background: url("images/07.png") no-repeat 50% 50%;
	background-size: cover;
}

.img-8 {
	background: url("images/ex.png") no-repeat 50% 50%;
	background-size: cover;
}

.header {
	color: #a77a3f;
	text-transform: uppercase;
	font-size: 32px;
}

.name {
	font-size: 48px;
}

.header,
.text-wrapper {
	position: relative;
}

.explanation {
	position: relative;
	top: 40vh;
}

.ml12 .letter {
	display: inline-block;
	line-height: 1em;
}

.link a {
	color: #a77a3f;
	text-transform: uppercase;
	font-size: 32px;
	font-family: "Neutral Face";
}

.hero {
	position: relative;
}

.text-wrapper {
	position: relative;
	top: 20%; left: 0;
	display: flex;
	flex-direction: row;
	font-size: 64px;
	color: #a77a3f;
	text-transform: uppercase;
	overflow: hidden;
}

.letters {
	display: inline-block;
}


/* media queries */
@media (max-width: 1100px) {
	.img {
		width: 80px;
		height: 120px;
	}

	.header {
		font-size: 24px;
	}

	.text-wrapper {
		font-size: 48px;
	}
}

@media (min-width: 820px) {
	.container {
		display: flex;
	}

	.images {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 820px) {
	.column {
		width: 100%;
	}

	.right {
		background: #fff;
	}	

	.img {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 400px;
		height: 400px;
	}

	.header {
		font-size: 16px;
		padding: 40px 0;
	}

	.text-wrapper {
		font-size: 32px;
		margin-bottom: 2rem;
	}
}

@media (max-width: 450px) {
	body::-webkit-scrollbar {
		display: none;
	}
	
	.img {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 300px;
		height: 300px;
	}
}