body {
	background-color: #00A8C6;
	overflow: hidden;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	height: 100%;
	background:
		linear-gradient( #2c29ce, #00000000 ),
		linear-gradient( 90deg, #ff9388, #00000000 ),
		linear-gradient( -90deg, #62f3a9c7, transparent ),
		linear-gradient( 145deg, #ffffff00, #acf52194 );
	background-blend-mode: screen;
	padding: 0;
	margin: 0
}

.lockheed {
	cursor: pointer;
	text-decoration: underline;
}

.duolingo {
	cursor: pointer;
	text-decoration: underline;
}

.underlined {
	text-decoration: underline;
}

.sanfrancisco, .alaska, .dota2, .rubiks {
	cursor: pointer;
	text-decoration: underline;
}

.sf-background {
	background-image: url(./sf.jpg);
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	transition: opacity 0.5s;
	opacity: 0;
}

.ak-background {
	background-image: url(./ak.jpg);
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	transition: opacity 0.5s;
	opacity: 0;
}

.rubiks-background {
	background-image: url(./rubiks.jpg);
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	transition: opacity 0.5s;
	opacity: 0;
}

.dota-background {
	background-image: url(./u69PnETg.jpeg);
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	transition: opacity 0.5s;
	opacity: 0;
}

.duolingo-background {
	transform: rotate(-10deg);
	margin-top: -20%;
	margin-left: -20%;
	opacity: 0;
	position: fixed;
	font-size: 60px;
	color: #0000006e;
	width: 150%;
	height: 150%;
	transition: opacity 0.5s;
	font-family: 'Noto Sans JP', sans-serif;
	pointer-events: none;
}

.lockheed-background {
	font-size: 80px;
	color: #10101045;
	position: fixed;
	top: 10%;
	transform: rotate(45deg);
	margin-left: 20%;
	margin-top: -20%;
	opacity: 0;
}

.lockheed-background.animated {
	opacity: 1;
		animation-duration: 2s;
		animation-name: flyinout;
		animation-iteration-count: infinite;
		animation-timing-function: cubic-bezier(0.26, 0.03, 0.83, 0.13);
}

@keyframes flyinout {
	0% {
		margin-left: 20%;
		margin-top: -20%;
	}

	50% {
		margin-left: 100%;
		margin-top: 80%;
	}

	100% {
		margin-left: 100%;
		margin-top: 80%;
	}
}

.lockheed:hover {
	color: #0b4eb5;
	background-color: #ffffff7a;
	/*text-shadow: 0px 0px 1px #0b4eb5;*/
}
.duolingo:hover {
	color: #7cc301;
	background-color: #ffffff7a;
	/*text-shadow: 0px 0px 1px #7cc301;*/
}
.sanfrancisco:hover, .alaska:hover {
	color: #fb8f03;
	background-color: #ffffff7a;
}
.dota2:hover {
	color: #c10000;
	background-color: #ffffff7a;
}
.rubiks:hover {
	color: #7800e9;
	background-color: #ffffff7a;
}

.intro-container {
	padding: 30px;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}

.intro {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
	color: #000;
	font-size: 27px;
	background-color: #ffffff82;
	padding: 30px;
	box-shadow: 2px 2px 10px #92929236;
	position: relative;
	overflow: hidden;

	box-sizing: border-box;
	max-height: 100%;
	backdrop-filter: blur(4px);

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contact span {
	text-align: right;
	font-size: 15px;
}

.contact a {
		color: #000;
		font-size: 12px;
		text-decoration: none;
		display: block;
		text-align: right;
		line-height: 20px;
		font-weight: 500;
}

.contact a:first-child {
	margin-bottom: 2px;
}

.contact .fa {
		font-size: 20px;
		vertical-align: middle;
		position: relative;
		top: -1px;
}

.contact a:hover .fa-linkedin-square {
	color: #0176b5;
}

.linkedin:hover {
	color: #0176b5;
}

.contact a:hover .fa-instagram::before {
	background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;;
}

.instagram:hover {
		background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}

.link4:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #CF2034;
	content: "";
	transform: scale(0);
	transition: transform .3s cubic-bezier(0.11, 0.7, 0, 1);
}

.link4:hover:after {
	transform: scale(1);
}

.wipe {
	transition: color 0.3s ease-out;
	
	&::after {
		width: 100%;
		height: 100%;
		display: block;
		background-color: #fff;
		content: " ";
		position: absolute;
		top: 0;
		transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);;
		transform: translateY(34px);
		z-index: -1;
	}
	
	&:hover {
		color: #124a58;
		
		&::after {
			transform: translateY(0px);
		}
	}
}