body{
	font-family: 'Anonymous Pro', monospace;
	font-size: 18px;

}

h1,h2,h3,h4,h5,h6{
	font-family: 'Open Sans', sans-serif;

}

#line{
	animation-name: typing;
	animation-iteration-count: infinite;
	animation-duration: 1s;
}

.description{
	margin-top: 4em;
}

/*
	FOOTER
*/

.footer{
	width: 100%;
	background: #FFEE58;
	margin-bottom: 0;
	padding: 3em 0;
}

.footer__headline{
	font-family: 'Anonymous Pro', monospace;
	font-size: 30px;
}

.footer__cta{
	border:solid 1px black;
	color: black;
	padding: 15px 15px;
}

.footer__social{
	margin-top: 1em;
}

.footer__social a{
	color: #000;
	text-decoration: underline;

}



/*
	PORTFOLIO
*/

.portfolio__item{
	width: 100%;
	height: 400px;
	background-image:url(../img/indumet_linetime.jpg);
	margin: 0;
	position: relative;
	cursor: pointer;
}

.portfolio__item:hover::after{
	background: rgba(0,0,0,0.9);
}

.portfolio__title{
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	text-transform: uppercase;
	z-index: 1;
}

.portfolio__item:after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: rgba(0,0,0,0.5);
	transition: 0.3s;
}


.portfolio .ed-item{
	padding: 0;
}

@keyframes typing{
	0%{
		opacity: 0;
	}

	50%{
		opacity: 1;
	}
}

@keyframes glitch{
	0%{
		top: 0;
		left: 0;
	}
	10%{
		top: 0px;
		left: 5px;
	}
	20%{
		top: 0;
		left: 0;
	}

}

@keyframes glitch_left{
	0%{
		top: 0;
		left: 0;
	}
	10%{
		top: 0px;
		left: 7px;
	}
	20%{
		top: 0;
		left: 0;
	}

}
