@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://fonts.googleapis.com/css?family=Comic+Neue);

body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	overflow: hidden
}
.blink_me {
	animation: blinker 0.3s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.spin1 {
	animation: spinner1 0.5s ease-in-out infinite;
}

.spin2 {
	animation: spinner2 0.5s ease-in-out infinite;
}

@keyframes spinner1 {
	from {
			transform:rotate(0deg);
	}
	to {
			transform:rotate(180deg);
	}
}

@keyframes spinner2 {
	from {
			transform:rotate(180deg);
	}
	to {
			transform:rotate(360deg);
	}
}

.upsidedown {
	transform:rotate(180deg);
}

#welcome {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: #CCC;
	padding-top: 40vh;
}

#welcomeButton {
	padding: 8px 20px;
	font-size: 24px;
	background: #777;
	color: white;
	border-radius: 3px;
	width: 50px;
	margin: auto;
	cursor: pointer;
}

#troll-container {
	position: absolute;
	font-family: 'Comic Neue', cursive;
	text-align: center;
	font-size: 50px;
	height: 100vh;
	width: 100vw;
}

#loader {
	margin: auto;
	font-size: 100px;
	text-align: center;
	margin-top: 160px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center
}

#parallel-world {
	cursor: pointer;
}

.disappear {
	transition: opacity 1s ease-in-out;
	opacity: 0;
}

.appear {
	transition: opacity 1s ease-in-out;
	opacity: 1 !important;
}

.disappear-fast {
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
}

.appear-fast {
	transition: opacity 0.5s ease-in-out;
	opacity: 1 !important;
}

.hide {
	display: none !important;
}

.invisible {
	transition: visibility 1s ease-in-out;
	visibility: hidden;
}

.visible {
	transition: visibility 1s ease-in-out;
	visibility: visible !important;
}

#banner {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100vh;
	background-image: url(../images/banner-min.png);
	background-size: cover;
}

#banner::before {
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/me-min.png);
	width: 724px;
	height: 767px;
	content: '';transform: translateX(-109px) translateY(115px) scale(0.7);
}

#banner::after {
	background-image: url(../images/circle-min.png);
	position: absolute;
	top: 0;
	right: 0;
	width: 531px;
	height: 504px;
	content: '';
	transform: translateX(27px) translateY(-25px) scale(0.9);
}

#banner.guitar::after {
	transition: background-image 1s ease-in-out;
	background-image: url(../images/guitar-min.png);
}

.line {
	margin: auto;
	font-size: 32px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 2px;
	color: white;
	position: absolute;
	width: 100vw;
	padding-left: 30vw;
	box-sizing: border-box;
	display: flex;
	z-index: 2;
}

#landing-intro {
	font-size: 60px;
	letter-spacing: 4px;
	top: 40vh;
}

#line-two {
	font-size: 60px;
	top: 50vh;
}

#line-three {
	font-size: 32px;
	top: 55vh;
	margin-left: 4px;
	min-height: 36px;
}

#line-four {
	font-size: 32px;
	top: 60vh;
	margin-left: 4px;
	min-height: 36px;
}

#line-five {
	font-size: 24px;
	top: 65vh;
	margin-left: 4px;
	min-height: 30px;
}

.line-two-small {
	font-size: 32px !important;
	margin-left: 4px;
}

.line-four-small {
	font-size: 24px !important;
}

.cursor {
	width: 4px;
	background-color: white;
	opacity: 0.4;
	animation: blinker 0.5s ease-in-out infinite;
}

#intro-cursor {
	height: 64px;
	width: 6px;
}

#line-two-cursor {
	height: 64px;
	width: 6px;
}

.small-cursor {
	height: 36px !important;
	width: 4px !important;
}

.x-small-cursor {
	height: 26px !important;
	width: 3px !important;
}

.line-text {
	padding: 0 8px;
}

.is-selected {
	background: #ACCEF7;
	border-radius: 3px;
}

.remove-padding-right {
	padding-right: 0px !important;
}

#connect-container {
	position: absolute;
	top: 4vh;
	left: 3vw;
	min-height: 32px;
	color: white;
	font-family: 'Raleway', sans-serif;
	z-index: 2;
	font-size: 28px;
}

.dropdown-button {
	padding: 8px 12px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	/* font-weight: 600; */
	display: flex;
	align-items: center;
	letter-spacing: 1px;
}

.dropdown-button:hover {
	background: rgba(0, 0, 0, 0.4);
}

.dropdown-button-label {
	margin-left: 4px;
}

.dropdown-menu {
	margin-top: 8px;
	font-size: 21px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.dropdown-list-item {
	padding: 8px 12px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.dropdown-list-item:hover {
	background: rgba(0, 0, 0, 0.3);
}

.dropdown-logo {
	height: 24px;
	width: 24px;
	background-size: 100%;
	margin: 0 16px 0 4px;
}

.dropdown-label {
	letter-spacing: 1px;

}

#linkedin-logo {
	background-image: url(../logos/linkedin-min.png);
}

#twitter-logo {
	background-image: url(../logos/twitter-min.png);
}

#dribbble-logo {
	background-image: url(../logos/dribbble-min.png);
}

#behance-logo {
	background-image: url(../logos/behance-min.png);
}

#youtube-logo {
	background-image: url(../logos/youtube-min.png);
}

#dropdown-caret {
	background-image: url(../icons/down-caret-min.png);
	margin: 6px 4px 0 16px;
	transition: transform 0.3s ease-in-out;
	transform: rotate(0deg);
}

#connect-button.active > #dropdown-caret {
	transition: transform 0.3s ease-in-out;
	transform: rotate(180deg);
}

/* Media Queries */
@media (max-width: 800px) {
	#connect-container {
		top: 3vh;
		left: 4vw;
		min-height: 32px;
		color: white;
		font-size: 20px;
	}

	.line {
		padding-left: 4vw !important;
	}

	#landing-intro {
		font-size: 40px;
	}

	#line-two-text {
		font-size: 40px;
	}

	#line-two {
		top: 47vh;
	}

	#line-three {
		top: 51vh;
	}

	#line-four {
		top: 55vh;
	}

	#line-five {
		top: 59vh;
	}

	#intro-cursor, #line-two-cursor {
		height: 48px;
		width: 6px;
	}

	.small-cursor {
		height: 26px !important;
		width: 4px !important;
	}

	.x-small-cursor {
		height: 20px !important;
		width: 3px !important;
	}

	.line-two-small {
		font-size: 22px !important;
	}

	#line-three-cursor, #line-four-cursor {
		height: 26px;
	}

	#line-four-text {
		font-size: 22px;
	}

	.line-four-small, .line-five-small {
		font-size: 18px !important;
	}

	#banner::after {
		transform: translateX(107px) translateY(-101px) scale(0.6);
	}

	#banner::before {
		transform: translateX(-181px) translateY(200px) scale(0.5);
	}
}