/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Global */
html{
	min-height: 100%;
	overflow-x: hidden;
}

#first-hit {
	position: absolute;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	top: 0;
	left: 0;
	background-color: #FFFFFF;
	animation: fuse 1.5s 0.25s 1 normal both;
}

.line-1{
	position: relative;
	top: 50%;
	margin: 0 auto;
	border-right: 2px solid rgba(0,0,10,.75);
	font-size: 5vw;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	transform: translateY(-50%);
	font-family: 'Anonymous Pro', monospace;
}

/* Animation */
.anim-typewriter{
	animation: typewriter 1.5s steps(20) 0.25s 1 normal both;
}
@keyframes typewriter{
	0% {
		width: 0;
	}
	25% {
		width: 55%;
	}
	75% {
		font-size: 5vw;
		border-right: 2px solid rgba(0,0,10,.75);
	}
	100% {
		font-size: 2vw;
		border-right: none;
	}
}
@keyframes fuse{
	0% {
	}
	75% {
		width: 100vw;
		height: 100vh;
		background-color: rgba(255,255,255,1);
	}
	100% {
		width: 30vw;
		height: 6vh;
		background-color: rgba(255,255,255,0);
	}
}

.profile-image {
	border: 1px solid #00000A;
}


.profile-back {
	background-color: #FFFFF7;
	border-radius: 8px;
	border: 3px solid #00000A;
}
