'home.css'
/* SCROLLBAR */

::-webkit-scrollbar-track
{
	background-color: #F0FAF3;
}

::-webkit-scrollbar
{
	width: 10px;
	background-color: #D1E6DC;
}

::-webkit-scrollbar-thumb
{
	background-color: #D1E6DC;
}

::selection {
  	background: #D1E6DC; /* WebKit/Blink Browsers */
}

::-moz-selection {
  	background: #D1E6DC; /* Gecko Browsers */
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

body, html {
	margin:0;
	width: 100%;
	padding: 0;
	border: 0;
	outline: 0;
	/* overflow-x: hidden; */
	/* position: relative; */
}

body {
	background-color: #F0FAF3;
	color: black;
	font-family: 'Work Sans', sans-serif;
	overflow: hidden;
}

.container {
  /* width: 80%; */
	width: 100%;
	height: 100%;
	/* min-height: 100vh;
	overflow: auto; */
	position: relative;
	/* top right bottom left */
	/* padding: 50px 15% 50px 5%; */
	/* display: grid;
	grid-template-columns: 20% 80%; */
}

.image-focus {
	width: 100vw;
	height: 150vh;
	position: absolute;
	top: 0;
	left: 0;

	z-index: 100;
	/* background-color: rgba(0,0,0,0.85); */
	background-color: rgba(74,115,102,0.85);
	overflow: hidden!important;
	/* display: flex; */
	display: none;
	flex-direction: column;
}

.image-focus .close-btn-div {
	align-self: flex-end;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10vh;
	width: 10vw;
}

.image-focus .close-btn {
	border:none;
	color: white;
	background: none;
	font-size: large;
	font-weight: 300;
}


.image-focus .focus-img-div {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	justify-self: center;
	height: 90vh;
}

.image-focus #focus-img {
	width: 60%;
}

.content {
	width: 80%;
	height: 90vh;
    position: absolute;
	overflow-x: hidden;

    /* top right bottom left */
	padding: 5vh 15% 5vh 5%!important;
}

.left {
	display: flex;
	flex-direction: column;
	width: 25%;
	height: 100%;
	position: fixed;
	letter-spacing: 1.8px;
	float: left;
}

.left > a {
	text-decoration: none;
	font-size: 11px;
	font-weight: 500;
}

/* #footer {
	position: absolute;
  bottom: 0;
  left: 0;
	font-family: 'Work Sans', sans-serif;
	font-size: 9px;
	letter-spacing: 1.8px;
  font-weight: 500;
	line-height: 20px;
	color: #777777;
} */


#name {
	font-size: 15px;
  letter-spacing: 3px;
  font-weight: 600;
	color: black;
}

#name-text {
	font-size: 11px;
}

.nav-link {
	font-weight: 500!important;
	font-size: 13px!important;
	margin-bottom: 10px;
	color: black;
}

#about-link {
	margin-top: 50px;
}

#resume-link {
	margin-bottom: 35px;
}

.active {
	font-weight: 600!important;
	color: black!important;
}

.work-link {
	margin-bottom: 10px;
	color: #777777;
}


.work-link:hover {
	color: black!important;
}


.right {
	width: 75%;
	margin-left: 25%;
    float:right;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 100px;
    margin-top: 5px!important;

	-webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1.5s; /* Firefox < 16 */
     -ms-animation: fadein 1.5s; /* Internet Explorer */
      -o-animation: fadein 1.5s; /* Opera < 12.1 */
         animation: fadein 1.5s;
}

.right > div {
	margin:0;
}

#work-main-img {
	width: 100%;
	margin-bottom: 50px;
}

.work-content {
	font-family: 'Work Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
  	font-weight: 500;
	line-height: 20px;
	color: #3B3B3B;
}

#work-title {
	font-size: 14px;
	letter-spacing: 1.5px;
	color: black;
}

#work-description {
	margin-bottom: 20px;
	color: #777777;
}

#work-text {
	margin-top: 50px;
}

#poster-img {
	width: 50%;
	/* margin-top: 0px; */
}

.iframe-div {
	margin: 0!important;
}

iframe {
	width:100%!;
}

.work-process {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.process-img {
	margin-top: 30px;
	width: 60%;
}

.process-img-text {
	font-size: 11px;
	margin-top: 5px;
	margin-bottom: 20px;
	text-align: left;
	color: #777777;
	align-self: flex-start;
}

.process-multi-img {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: 100%;
	margin-top: 30px;
}

.process-multi-img img {
	width: 45%;
}

#music-link img {
	margin-top: 0px;
	/* border: 2px solid #777777;
	border-radius: 10px; */
	width: 100%;
}

#music-link:hover {
	opacity: 0.5;
}

.class-text {
	margin-top: 80px;
}

audio {
	width:60%;
	margin: 0 20%;
	margin-top: 50px;
}

footer {
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	font-size: 10px;
	letter-spacing: 2px;
	color: inherit;
	height: 150px;
}

.work-process {
	margin-top: 80px;
}

.app-link {
  background-color: red;
  color:white;
  padding: 5px 10px;
}

.app-link a {
  text-decoration: none;
  color: white;
}

.app-link:hover {
  background-color: black;
}

#landscape-gif {
	margin-top: 30px;
  width:100%;
}

.work-screenshots {
	margin-top: -3em;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 5px;
	grid-row-gap: 2px;
	margin-bottom: 5em;
}

.work-screenshots > div {
	width: 100%;
}

.work-screenshots img {
	width: 100%;
}

.expandable-img:hover {
	transition: .25s;
	opacity: .8;
}

.full-width-img {
	width: 100%;
}

.error-text {
	margin:0!important;
	font-family: 'Work Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
  	font-weight: 500;
	line-height: 20px;
	color: #3B3B3B;
}

#error-list li {
	list-style-type:square;
}

.error-text a {
	color: black;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}

.process-video {
  width: 100%;
}

.project-title {
	font-weight: 600;
	margin-top: 5em;
	margin-bottom: 3em;
}

.iframe-portrait {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.section-title {
  align-self: flex-start;
  font-weight: 600;
	color: black;
	margin-top: 50px;
	width: 100%;
}

.process-img-source {
	/* margin-top: -10px; */
	font-size:9px;
	letter-spacing: .5px;
	color: #6B7A74;
}
