
body{
	font-family: lineto, serif;
	line-height: 1.8;
}

.pageLength{
	position: absolute;
	width: 100vw;
	height: 170vh;
	z-index: -1;
}




#blob1div{
	position: fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
}

#blob2div{
	position: fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
}
#blob1{
	position: absolute;
	width: 150%;
	left: 20vw;
	top: 100vh;
	transform: translate(-50%,-50%);
}
#blob2{
	width: 80%;
	position: absolute;
	left: 90vw;
	top: 50vh;
	transform: translate(-50%,-50%) rotate(140deg);
}


#contact-page{
	left: 50vw;
	top: 50vh;
}
#contact-title{
	padding-top: 30vh;
	text-align: center;
}
.contact-p{
	position: relative;
	padding-top: 10vh;
	left: 50%;
	transform: translate(-50%,0);
	width: 35vw;
	letter-spacing: 2px;
	text-align: center;
}

#email{
	color: black;
}

#email:hover ~ #speechBubble{
	width: 280px;
	opacity: 1;
}

#speechBubble{
	padding-left: 10px;
	padding-bottom: 5px;
	position: relative;
	opacity: 0;
	background-color: indianred;
	border-radius: 20px;
	width: 0px;
	height: 15px;
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
	font-family: lineto;
	left: 100%;
	pointer-events: none;
	transform: translate(-50%,-200%) rotate(10deg);
	transition: all 0.5s cubic-bezier(.47,1.64,.41,.8);
}

.form{
/*	border: solid;*/
	text-align: left;
}

.form-inputs{
	width: 100%;
	height: 30px;
	border-width: 1px;
	border-style: solid;
	border-color: #e6ddd4;
	border-radius: 10px;
	font-family: monospace;
	margin-bottom: 10px;
}
#form-message{
	height: 60px;
	min-width: 100px;
}
#form-button{
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	font-family: lineto;
	width: 50px;
	height: 30px;
	border-radius: 10px;
	border-style: none;
	transition: all 0.5s cubic-bezier(.47,1.64,.41,.8);
	margin-bottom: 50px;
}
#form-button:hover{
	cursor: pointer;
	width: 70px;
	background-color: beige;
}

.socials{
	position: relative;
	width: 40%;
	left: 50%;
/*	top: 70%;*/
	display: flex;
	justify-content: space-between;
	transform: translate(-50%,0);
}
.socials-img{
	width: 40px;
	transform: rotate(0deg);
	transition: all 0.5s cubic-bezier(.47,1.64,.41,.8);
}
.socials-img:hover{
	transform: rotate(50deg);
}

#back-button{
	position: absolute;
	color: black;
	left: 50%;
	margin-top: 100px;
	transform: translate(-50%,0);
}



@media (max-width : 600px) {
	#blob1{
		position: absolute;
		width: 1000px;
		left: 20vw;
		top: 100vh;
		transform: translate(-50%,-50%);
	}
	.pageLength{
		height: 180vh;
	}
	#contact-page{
		left: 50vw;
		top: 50vh;
	}
	#contact-title{
		padding-top: 30vh;
		text-align: center;
	}
	.contact-p{
		position: relative;
		padding-top: 10vh;
		left: 50%;
		transform: translate(-50%,0);
		width: 80vw;
		letter-spacing: 2px;
		text-align: center;
	}
	#back-button{
		position: absolute;
		color: black;
		left: 50%;
		transform: translate(-50%,0);
	}
	.socials{
		width: 80%;
	}
	canvas{
		filter: none;
		-webkit-filter: none;
	}
}

