*{
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
	transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
}
body{
	background: #000;
	font-family: 'Source Code Pro', monospace;
	padding: 50px;
	font-weight: 200;
	margin: 0;
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
}

section{
	background: rgba(0,0,0,0.9);
	color: #fff;
	width: 33.33%;
	display: inline-block;
	font-size: 2rem;
	box-sizing: border-box;
	padding: 100px;
	height: calc(100vh - 200px);
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	backdrop-filter: blur(100px);
}

span.material-icons{
	z-index: 2;
	font-size: 70vh;
	color: #000;
	text-shadow: -1px -1px 1px #111;
	opacity: 1;
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
	transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
	position: absolute;
	left: 0;
	bottom: 0;
}

section span.label{
	position: relative;
	display: block;
	z-index: 2;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);

}
section:after{
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
	transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
}
section:hover span.material-icons{
	color: #000;
}

#cv{
	position: relative;
	clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0 100%, 0% 10%);
	border-bottom:  5px solid #e01e37;
}
#cv:after{
	z-index: 0;
	opacity: 0;
	display: block;
	content: "";
	background: linear-gradient(45deg, #e01e37, #b21e35, #85182a, #641220);
	background-size: 400% 400%;
	animation: gradient1 10s ease infinite;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#cv:hover{

}
#cv:hover span.material-icons{
	opacity: 0.05;
}
#cv:hover:after{
	opacity: 1;
}

#portfolio{
	position: relative;
	border-bottom:  5px solid #a11d33;
	animation-delay: 0.2s;
}
#portfolio:before{
	z-index: 0;
	display: block;
	content: "";
	background: #111;
	width: 2px;
	height: 100%;
	position: absolute;
	left: -1px;
	top: 0;
}
#contact:before{
	z-index: 0;
	display: block;
	content: "";
	background: #111;
	width: 2px;
	height: 100%;
	position: absolute;
	left: -1px;
	top: 0;
}
#portfolio:after{
	z-index: 0;
	opacity: 0;
	display: block;
	content: "";
	background: linear-gradient(45deg, #a11d33, #bd1f36, #c71f37, #85182a);
	background-size: 200% 200%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#portfolio:hover span.material-icons{
	opacity: 0.05;
}
#portfolio:hover:after{
	opacity: 1;
}

#contact{
	position: relative;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 90%, 85% 100%, 0% 100%, 0% 0%);
	border-bottom:  5px solid #e01e37;
	animation-delay: 0.5s;
}
#contact:after{
	z-index: 0;
	opacity: 0;
	display: block;
	content: "";
	background: linear-gradient(45deg, #e01e37, #b21e35, #85182a, #641220);
	background-size: 200% 200%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#contact:hover span.material-icons{
	opacity: 0.05;
}
#contact:hover:after{
	opacity: 1;
}

@media screen and (max-width: 1023px){
	body{
		padding: 40px;
	}
	section{
		width: 100%;
		height: calc(25vh - 40px);
		padding: 40px;
		font-size: 1.5rem;
	}
	#portfolio:before{
		z-index: 0;
		display: block;
		content: "";
		background: #85182a;
		width: 20vh;
		height: 2px;
		position: absolute;
		left: 20%;
		top: 0%;
	}
	#contact:before{
		z-index: 0;
		display: block;
		content: "";
		background: #85182a;
		width: 20vh;
		height: 2px;
		position: absolute;
		left: 20%;
		top: 0%;
	}
	span.material-icons{
		left: 0;
		top: 5%;
		font-size: 25vh;
	}
	#cv{
		clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0 100%, 0% 20%);
	}
	#contact{
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 80%, 85% 100%, 0% 100%, 0% 0%);
	}
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  opacity: 0.1;
}

#details{
	font-size: 12px;
	color: #ddd;
	text-align: left;
}
#greet{
	font-size: 12px;
	color: #ddd;
	text-align: right;
	animation-delay: 0.5s;
}
#details p{
	display: inline-block;
}
#greet p{
	display: inline-block;
	text-align: right;
}
#details:before,
#greet:before{
	display: inline;
	content: "_";
}
#details:after,
#greet:after{
	display: inline;
	content: "_";
}

.fade-in-left{-webkit-animation:fade-in-left .6s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in-left .6s cubic-bezier(.39,.575,.565,1.000) both}


/* ----------------------------------------------
 * Generated by Animista on 2022-2-13 14:58:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes fade-in-left{0%{-webkit-transform:translateX(-50px);transform:translateX(-50px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-left{0%{-webkit-transform:translateX(-50px);transform:translateX(-50px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

.flicker-in-1{-webkit-animation:flicker-in-1 2s linear both;animation:flicker-in-1 2s linear both}

/* ----------------------------------------------
 * Generated by Animista on 2022-2-13 15:5:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes flicker-in-1{0%{opacity:0}10%{opacity:0}10.1%{opacity:1}10.2%{opacity:0}20%{opacity:0}20.1%{opacity:1}20.6%{opacity:0}30%{opacity:0}30.1%{opacity:1}30.5%{opacity:1}30.6%{opacity:0}45%{opacity:0}45.1%{opacity:1}50%{opacity:1}55%{opacity:1}55.1%{opacity:0}57%{opacity:0}57.1%{opacity:1}60%{opacity:1}60.1%{opacity:0}65%{opacity:0}65.1%{opacity:1}75%{opacity:1}75.1%{opacity:0}77%{opacity:0}77.1%{opacity:1}85%{opacity:1}85.1%{opacity:0}86%{opacity:0}86.1%{opacity:1}100%{opacity:1}}@keyframes flicker-in-1{0%{opacity:0}10%{opacity:0}10.1%{opacity:1}10.2%{opacity:0}20%{opacity:0}20.1%{opacity:1}20.6%{opacity:0}30%{opacity:0}30.1%{opacity:1}30.5%{opacity:1}30.6%{opacity:0}45%{opacity:0}45.1%{opacity:1}50%{opacity:1}55%{opacity:1}55.1%{opacity:0}57%{opacity:0}57.1%{opacity:1}60%{opacity:1}60.1%{opacity:0}65%{opacity:0}65.1%{opacity:1}75%{opacity:1}75.1%{opacity:0}77%{opacity:0}77.1%{opacity:1}85%{opacity:1}85.1%{opacity:0}86%{opacity:0}86.1%{opacity:1}100%{opacity:1}}