@font-face{
	font-family:title1;
	src: url(fonts/title1.ttf);
}

@font-face{
	font-family:title2;
	src: url(fonts/title2.otf);
}

@font-face{
	font-family:main;
	src: url('fonts/grandview.ttf')
}

@font-face{
	font-family:londrina;
	src: url('fonts/londrinaoutline-regular.ttf')
}

@font-face{
	font-family:londrina solid;
	src: url('fonts/londrinasolid-regular.ttf')
}

@font-face{
	font-family:ubuntu;
	src: url('fonts/ubuntu-light.ttf')
}
@font-face{
	font-family:josefin;
	src: url('fonts/josefinslab-regular.ttf')
}
@font-face{
	font-family:red thinker;
	src: url('fonts/redthinker-light.ttf')
}
@font-face{
	font-family:share tech mono;
	src: url('fonts/sharetechmono-regular.ttf')
}
@font-face{
	font-family:earth orbiter;
	src: url('fonts/earthorbitertitle.ttf')
}

@font-face{
	font-family:alien;
	src: url('fonts/alienleague.ttf')
}

::-webkit-scrollbar {
    display:none;
}


:root{
	--background-light: white;
	--background-dark: rgb(8, 11, 17);
	--fontcolor_light: black;
	--fontcolor-dark: rgb(233 220 195);
	--textshadow_dark: #00ffe7;
}

html{
	cursor:none;
	height: 100vh;
	width:100vw;
	overflow:hidden;
}

body{
	overflow-y:hidden;
	overflow-x:hidden;
	padding:0;
	margin:0;
	background: var(--background-light);
	color:var(--fontcolor_light);
	transition: background 3s ease-in-out, color 1s ease-in-out;
	user-select:none;
	cursor:none;
}



a {
  text-decoration: none;
  color: inherit;
  cursor:none;
}

b{
color:#E91E63;
}

#window{
	position:fixed;
	width: 100vw;
	height: 100vh;
	z-index:1;
}

#frame{
	position:relative;
	width: 100vw;
	height: 100vh;	
	overflow-x:hidden;
	overflow-y:scroll;
	scrollbar-width:none;
}

#nav{
	position: absolute;
    left: 50px;
    top: 150px;
    font-size: 40px;
    font-family: title1;
	padding-top:30px;
    z-index: 20;
	width:100px;
	transition:background 3s ease-in-out;
	background: var(--background-light);
	padding-left:7px;
}



#modeSwitch{
	position: fixed;
    top: -10px;
    right: 50px;
    z-index: 5;
    cursor: none;
    min-width: 128px;
    background: var(--background-light);
    padding: 0px 10px 10px 10px;
    border-radius: 10px;
	transition: background 3s ease-in-out;
}



#aboutContainer, #homeContainer, #projectContainer{
	position:absolute;
	left:0px;
	top:0px;
	width:calc(100vw - 0px);
	height:calc(100vh - 0px);
	font-family:main;
	overflow-y: auto;
	scrollbar-width:none;
	font-size:25px;
	z-index:4;
	text-align: center;
	opacity:0;

}

#homeContainer{
	display:initial;
	opacity:1;
}


#aboutContent, #homeContent{
    position: absolute;
    right: 0px;
    width: 250px;
    text-align: left;
    font-size: 16px;
    bottom: 0px;
    padding: 50px;
    padding-top: 100px;
    border-radius: 30px;
	transition: background 3s ease-in-out;
	z-index:4;
	
}

#homeContent{
    width: 140px;
    font-family: 'ubuntu';
    background: var(--background-light);
    padding: 10px;
    border-radius: 5px;
    transition: background 3s ease-in-out;
	font-weight:bold;
	font-size:14px;
	bottom:50px;
	right:50px;
}

#aboutContent{
	padding-left:100px;
	padding:50px;
	right:0px;
	bottom:0px;
}

#aboutContent::before{
	content:'';
	height:150%;
	width:150%;
	min-height:700px;
	position:absolute;
	visibility:visible;
	top:-25%;
	left:-25%;
	opacity:1;
	transition:opacity 1s ease-in-out;
	transition-delay:3.5s;
    background: radial-gradient(60% 60%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, .9), rgba(255, 255, 255, .9), transparent, transparent);
	z-index:-1;
}

#aboutContent::after{
	content:'';
	height:150%;
	width:150%;
	min-height:700px;
	position:absolute;
	visibility:hidden;
	top:-25%;
	left:-25%;
	opacity:0;
	transition:opacity 1s ease-in-out;
	transition-delay:3.5s;
    background:radial-gradient(60% 60%, rgba(8, 11, 17, 1), rgba(8, 11, 17, 1), rgba(8, 11, 17, .9), rgba(8, 11, 17, .9), transparent, transparent);

	z-index:-1;

}

	
	
#aboutContainer{
	overflow:hidden;
	min-height:600px;
}
	
#aboutTitle{
	position:relative;
	left:10px;
	font-size: 18px;
	text-align:left;
	font-weight:bold;

}

#projectContainer{
	width:50%;
	left:auto;
	right:0px;
	padding:50px;
	box-sizing:border-box;
	font-family:main;
	overflow-y: scroll;
	font-size:30px;
	z-index:4;
	text-align: center;
	display:none;
	opacity:0;
	padding-top:150px;
	padding-bottom:150px;
	padding-right:25px;
}



#contactContainer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	min-height:300px;
	font-family:main;
	overflow-y: scroll;
	scrollbar-width:none;
	font-size:18px;
	z-index:4;
	text-align: center;
	opacity:0;
}

#contactInfo{
    position: absolute;
    right: 50px;
    bottom: 50px;
}

#contentWrapper{

}

#name{
	position: absolute;
    left: 40px;
    top: 50px;
    font-size: 80px;
    font-family: alien;
    letter-spacing: 2px;
	z-index:99;
}
#name:hover{
	
}

#title{
	position: absolute;
    left: 48px;
    top: 133px;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: 'ubuntu';
	z-index:99;
}

#selectorContainer{
	position:fixed;
	bottom:70px;
	left:40vw;
	z-index:20;
}

#spacer{
	margin-bottom:10vh;
}

#nebula{
	background:transparent;
	opacity:0;
	height:100%;
	width:100%;
	position:absolute;
	top:0;
	left:0;
	transition: opacity 3s ease-in-out;
}

#project-arrow{
    color: black;
    position: absolute;
    right: 0;
    top: 130px;
    font-size: 24px;
    right: 25px;
    font-family: 'share tech mono';
	animation:float2 2s ease-in-out infinite;
}

.section-container{
	transition:opacity 1s ease-in-out;
	display:none;
}


.title1{
	font-Family:title1;
}

.white{
	color:white;
}

.icon{
	position:relative;
	top:17px;
	opacity:.7;
	filter: grayscale(70%) brightness(.7);
}

.content{
	position:absolute;
	right:0;
	top:0;
	width:calc(100vw - 400px);
	height:calc(100vh - 110px);
	display: table-cell;
	vertical-align: middle;
	text-align:center;
}

.projectImg{
	position:absolute;
	top:30px;
	left:42vw;
	height:200px;
	width:200px;
	border-radius:150px;
	animation: float1 5s ease-in-out infinite;
	border-style:solid;
	border-width:10px;
	border-color:rgb(150,140,130);
}


.project{
	position:relative;
	z-index:5;
	text-align:right;
	margin-bottom:20px;
}

.project-title:hover{
	font-family:londrina solid;
}

.project-title:hover + .project-description{
	color:black;
}

.project-title{
	font-family: londrina;
	font-size:70px;
	display:inline-block;
}
.project-description{
	font-size: 14px;
    font-family: 'share tech mono';
    letter-spacing: 0px;
    margin-top: -3px;
    color: #8d7f50;
	transition: color .3s ease-in-out;
}





.block{
	display:inline-block;
}

.textRight{
	text-align:left;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(150,150,150);
  -webkit-transition: .4s;
  transition: .4s;
  	cursor:none;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: rgb(50,50,50);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color:rgb(120,110,100);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}





.right{
	float:right;
}

.rotAnim{
	animation: rotate1 ease-in-out .5s, float1 5s ease-in-out infinite;
}

.selectorTitle{
	margin-bottom:0px;
}

.navLink{
	cursor: pointer;
    transition: transform .5s;
    font-family: share tech mono;
    font-size: 15px;
    letter-spacing: -1px;
	margin-bottom:10px;
	transform-origin: 0% 100%;
	cursor:none;
	font-weight:bold;
}

.navLink:hover{
	color:rgb(150,140,100);
}

.js{
	color:orange;
}

.html{
	color:yellow;
}
.css{
	color:red;
}




@keyframes float1{
	0%{transform:translate(0px,0px);}
	33%{transform:translate(10px,20px);}
	66%{transform:translate(-5px,10px);}
	100%{transform:translate(0px,0px);}
}

@keyframes float2{
	0%{transform:translate(0px,0px);}
	50%{transform:translate(0px,-5px);}
	100%{transform:translate(0px,0px);}
}

@keyframes rotate1{
	0%{rotate:y 0deg;}
	50%{rotate:y 180deg;}
	100%{rotate:y 360deg;}
}


@keyframes wobble1{
	0%{transform:translate(0px,0px) skewY(20deg) skewX(-10deg) scale(1);}
	33%{transform:translate(10px,20px) skewY(0deg) skewX(10deg) scale(1.3);}
	66%{transform:translate(-5px,10px) skewY(-5deg) skewX(0deg) scale(1.2);}
	100%{transform:translate(0px,0px) skewY(20deg) skewX(-10deg) scale(1);}
}




/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px) {
	
	#projectContainer{
		top:400px;
		width:100%;
		overflow:hidden;
		height:initial;
		padding-left:10px;
		padding-right:10px;
	}
	
	#aboutContainer{
		top:300px;
		width:100%;
		font-size:18px;
		min-width:25px;
		overflow:hidden;
		margin-top:50px;
	}
	
	#aboutContent{
		left:0;
		top:50px;
		width:100%;
		box-sizing: border-box;
		padding:10px;
	}
	
	#aboutTitle{
		left:0;
		text-align:right;
	}
	
	.project-title{
		font-size:10vw;
	}
	
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	#frame{

	}
	
	#window{

	}	
	
	#maskTop{
		height:40px;
	}

	#maskBottom{
		height:10px;
	}
	

	#homeContainer{
		width:100%;
		height:100%;
		min-height:500px;
	}
	#homeContent{
		bottom:0;
		right:0;
		padding:10px;
	}

	
	
	#modeSwitch{
		top:-13px;
		right:25px;
	}
	
	#name{
		font-size:15vw;

	}
	
	#title{
		letter-spacing:normal;
	}
	
	#nav{
		font-size:25px;
	}
	
	#spacer{
		margin-bottom:0px;
	}
	
	#selectorContainer{
		font-size:15px;
		left:20vw;
		bottom:20px;
	}
	

	#contactContainer{
		top:300px;
	}
	
	#contactInfo{
		position:absolute;
		width:90%;
		left:5%;
		top:100px;

	}
	
	.textRight{
		text-align:right;
	}
	
	.content{
		position:relative;
		width:calc(100vw - 100px);
		height:calc(100vh - 110px);
	}
	
	.dots{
		margin-top:10px;
		height:25px;
		width:25px;
	}
	
	.project{
		font-size:20px;
		left:10%;
		width:90%;
	}
	
	.smHide{
		display:none;
	}
	

}



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	
}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 310px) {
	#title{
		display:none;
	}

}

@media (max-height: 660px) {
  #aboutContent{
	top:0;
  }
  

	#contactInfo{
		top:100px;
	}
}