.body {
	flex-direction: column;
}

.body span {
	display: block;
	margin-bottom: 0;
	cursor: default;
}

.word_container {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 100px;
}

.work_title {
	font-size: 45px;
	font-family: Roboto Bold;
	width: 40%;
	animation: slideInFromLeft 0.5s forwards;
	text-align: left;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.work_title span {
	font-size: 18px;
	color: #969696;
	font-family: Roboto;
}

.work_title span:first-child {
	margin-top: 20px;
}

.work_desc {
	font-size: 20px;
	width: 50%;
	padding-top: 15px;
	animation: slideInFromRight 0.5s forwards;
	text-align: left;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.image_container img {
	width: 100%;
	margin-bottom: 70px;
}

.image_container img:first-child {
	animation: appear 0.5s forwards;
}

@keyframes appear {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*.image_container img:not(:first-child) {
	opacity: 0
}*/

.show {
	animation: showme 0.5s forwards;
}

@keyframes showme {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.all_works {
	font-size: 22px;
	display: inline-block;
	margin-bottom: 70px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.footer {
	position: relative;
	bottom: 0;
	margin-bottom: 70px;
}

/********** MOBILE PORTRAIT **********/
@media only screen and (min-width: 320px) and (max-width: 812px) {
	.body {
		padding: 20px 20px 0;
	}
	
	.word_container {
		flex-direction: column;
		margin: 20px 0 30px;
	}

	.work_title {
		width: 100%;
		line-height: 1.2em;
		font-size: 40px;
	}

	.work_title span {
		line-height: 1.5em;
	}

	.work_title span,
	.work_desc {
		font-size: 18px;
	}

	.work_desc {
		width: 100%;
		margin-top: 25px;
	}

	.image_container img {
		margin-bottom: 40px;
	}
	
	.all_works {
		margin-bottom: 50px;
		font-size: 20px;
	}

	.footer {
		margin-bottom: 15px;
	}
}
/********** END MOBILE PORTRAIT **********/

/********** MOBILE LANDSCAPE **********/
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation:landscape) {
	.word_container {
		margin: 30px 0;
	}
}
/********** END MOBILE LANDSCAPE **********/

/********** TABLET LANDSCAPE **********/
@media only screen and (min-width: 813px) and (max-width: 1281px) and (orientation:landscape) {
	.body {
		padding: 60px 20px 0;
	}

	.word_container {
		margin: 20px 0 50px;
	}

	.work_title {
		font-size: 40px;
	}

	.work_desc {
		font-size: 18px;
	}

	.image_container img {
		margin-bottom: 40px;
	}
	
	.all_works {
		margin-bottom: 50px;
		font-size: 20px;
	}

	.footer {
		margin-bottom: 15px;
	}
}
/********** END TABLET LANDSCAPE **********/