#app {
	background: #222222;
}

.me-box {
	margin: auto;
	padding: 0;
	max-width: 50%;
	width: 50%;
	height: 100vh;
	position: fixed;
	left: 0;
	background: url('../images/me-painting.jpg') no-repeat center;
	background-size: cover;
}

.me-title {
	font-size: 4rem;
	line-height: 1;
	text-transform: uppercase;
	color: white;
	margin: 15vh 0 0 40px;
}

.me-subtitle {
	font-size: 2.5rem;
	line-height: 1.5;
	color: white;
	margin: 0 0 0 40px;
}

.me-resume {
	font-size: 1.75rem;
	line-height: 1.5;
	color: white;
	margin: 0 0 0 40px;
	font-weight: bold;
}

.me-resume:hover {
	color: black;
}

.me-recents {
	font-size: 2.5rem;
	color: white;
	position: absolute;
	bottom: 10vh;
	right: 0;
	margin: auto;
	padding: 10px 20px;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	border-left: 2px solid white;
}

.job-box {
	margin: auto;
	padding: 0;
	max-width: 50%;
	width: 50%;
	position: absolute;
	right: 0;
	z-index: 1;
}

.job-row {
	width: 100%;
	right: 0;
}

.job-item {
	width: 50%;
	overflow: hidden;
}

.job-title {
	font-size: 2rem;
	font-weight: bold;
}

.job-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 100%;
	padding: 0 40px;
	transition: transform 1s ease-in-out;
	z-index: -1;
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	justify-content: center;
}

.job-item:hover .job-info {
	transform: translateX( -100% );
}

.job-title-image {
	width: 60%;
}

.job-description {
	font-size: 1.5em;
}

.job-image {
	width: 100%;
	z-index: 1;
}

.bold {
	font-weight: bold;
}