body, html{
	-position: relative;
	height: 100%;
	width: 100%;
	margin: 0;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}
body{
	background: rgba(2, 20, 34, 1);
}
body.home{
	background: rgba(2, 20, 34, 1);
	overflow: hidden;
	overflow-y: scroll;
	transition: 1s all;
	
}
body.about-me{
	background: linear-gradient(180deg, #FFA4C5 -16.41%, #76CEFF 153.1%);
	-overflow: hidden;
	overflow-x: hidden;
	-overflow-y: scroll;
	transition: 1s all;
	background-size: 100vw 5000px;
	scroll-behavior: smooth;
}
body.projects{
	background-color: rgba(2, 20, 34, 1);
	-overflow: hidden;
	-overflow-y: hidden;
	transition: 1s all;
	background: linear-gradient(123.23deg, #011829 15.56%, #011B2E 50.63%, #DA2B40 119.76%);
	-position: relative;
	margin: 0;
	background-size: 100vw 2000px;
	background-position: center;
	padding: 0;
	height: 2500px;
}

.circle, .bg-circle{
	position: absolute;
	border: solid 2px rgba(204, 204, 204, 0.767);
	width: 40px; 
	height: 40px; 
	border-radius: 50%; 
	-background-color: rgba(255, 255, 255, 0.3);
	-box-shadow: 0px 0px 50px 1px rgba(255, 255, 255, 0.4);
	-filter: difference;
	-mix-blend-mode: difference;
	backdrop-filter: hue-rotate(90deg);
	transition: 0.2s;
	z-index: 10;
	pointer-events: none;
}
.bg-circle{
	background-color: rgba(255, 255, 255, 0.25);
	border: solid 0px rgb(204, 204, 204);
}
.mouseHover{
	border: 1px solid red;
	padding: 20px;
}
.hoverables{
	z-index: 40;
}

/* PROJECT CARDS */
.projects-bg{
	border: 0px solid red;
	position: fixed;
	display: flex;
	flex-flow: row nowrap;
	transform: translateX(20%);
	width: 70vw;
	height: 90vh;
	margin-top: 5vh;
	z-index: -50;
	transition: 0.5s all;
	border-radius: 15px;
	box-sizing: border-box;
}
.projects-bg .item{
	width: 30%;
	height: 70%;
	background: linear-gradient(180deg, rgba(255, 154, 227, 0.05) 0%, rgba(0, 148, 255, 0.05) 100%);
	-background: linear-gradient(247.76deg, rgba(255, 154, 227, 0.25) -6.22%, rgba(0, 148, 255, 0.25) 113.7%);
	backdrop-filter: blur(0px);
	border-radius: 15px;
	border: 0px solid green;
	transform: rotate(45deg) translateY(10%) translateX(15%);
	-opacity: 50%;
	transition: 0.5s all;
}
.projects-bg .item .content{
	display: none;
	width: 80%;
	margin: auto;
}
body.projects .projects-bg {
	z-index: 0;
	transform: translateX(1%) translateY(-5%);
	position: absolute;
	height: fit-content;
	border: 0px solid navajowhite;
	align-items: center;
	justify-content: flex-start;
	top: 100px;
}
body.projects .projects-bg .item{
	transform: rotate(0deg) translateY(10%) translateX(15%);
	backdrop-filter: blur(10px);
	margin: 0 20px 0 20px;
	border: 0px solid greenyellow;
}
body.projects .projects-bg .item .content{
	opacity: 100%;
	display: flex;
	flex-direction: column;
	margin: 20px auto 20px auto;
}
body.projects .projects-bg .item .content .img{
	width: 100%;
	margin: auto;
	border: 1px solid rgb(255, 255, 255, 0.2);
	overflow: hidden;
	transition: 0.5s all;
	border-radius: 5px;
	margin: 10px 0 10px 0;
	box-sizing: border-box;
}
body.projects .projects-bg .item .content .img img{
	width: 100%;
	transition: 0.5s all;
	opacity: 70%;
}
body.projects .projects-bg .item .content .img img:hover{
	transform: scale(1.1);
	opacity: 100%;
}
body.projects .projects-bg .item .content .icons{
	display: flex;
	flex-direction: row;
	margin: 10px 0 10px 0;
}
body.projects .projects-bg .item .content .icons i{
	margin: 0 20px 0 0;
	font-size: 28px;
	color: rgb(255, 255, 255, 0.7);
	position: relative;
}
body.projects .projects-bg .item .content .icons i:hover{
	color: rgb(255, 255, 255, 1);
}
body.projects .projects-bg .item .content .icons i#github-icon:hover::after{
	content: "Github";
	padding: 5px 10px 5px 10px;
	background-color: rgba(251, 154, 183, 0.7);
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 15px;
	
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
}
body.projects .projects-bg .item .content .icons i#web-icon:hover::after{
	content: "Website";
	padding: 5px 10px 5px 10px;
	background-color: rgba(251, 154, 183, 0.7);
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 15px;
	
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
}
.home-page{
	opacity: 0%;
	z-index: -100;
	border: 0px solid red;
	height: 100vh;
	display: flex;
	flex-direction: row;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
}
.home-page.active{
	opacity: 100%;
	z-index: 0;
	-background: rgba(2, 20, 34, 1);
}
.about-page{
	opacity: 0%;
	z-index: -100;
	position: absolute;
	top: 0;
	left: 0;
}
.about-page.active{
	opacity: 100%;
	z-index: 00;
}
.projects-page{
	opacity: 0%;
	z-index: -100;
	height: 2000px;
	top: 0;
	left: 0;
}
.projects-page.active{
	opacity: 100%;
	z-index: 0;
}

/* HOME PAGE */
.home-page .section{
	width: 50%;
	height: 100%;
	border: 0px solid green;
}
.home-page .section.left{
	width: 60%;
}
.home-page .section.right{
	width: 40%;
}
.home-page .section.left .text{
	border: 0px solid red;
	margin: 20% 0 0 10%;
	transition: 0.5s all;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	
}
.home-page .section.left .text .intro{
	color: whitesmoke;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 200;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: 0.5s all;
}
.home-page .section.left .text .name{
	/* width: 701px;
	height: 141px;
	left: 154px;
	top: 383px; */

	font-family: 'Roboto';
	font-style: normal;
	font-weight: 100;
	font-size: 7vw;
	line-height: 120px;
	text-transform: uppercase;

	background: linear-gradient(90deg, #FB9AB7 -48.73%, #76CEFF 120.91%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;

	-text-shadow: 5px 4px 10px rgba(0, 0, 0, 0.75);
	border: 0px solid green;
	transition: 0.5s all;
}
.home-page .section.left .text .bio{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 100;
	font-size: 30px;
	line-height: 41px;
	/* identical to box height */

	letter-spacing: 0.02em;
	font-feature-settings: 'tnum' on, 'onum' on, 'case' on, 'cpsp' on, 'ordn' on, 'sinf' on;

	color: #FFFFFF;
	transition: 0.5s all;
}
.home-page .section.left .text .tags{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 200;
	font-size: 25px;
	line-height: 35px;
	letter-spacing: 0.02em;

	color: rgba(255, 255, 255, 0.5);
	transition: 0.5s all;
}
.home-page .section.right .content{
	position: relative;
	border: 0px solid yellow;
	width: fit-content;
	height: fit-content;
	position: relative;
	margin-top: 10vh;
}
.home-page .section.right .content .profile-img{
	transform: scale(0.8);
	border: 0px solid red;
	width: 27vw;

}
.home-page .section.right .content .about-me-blob{
	transform: scale(0.8);
	position: absolute;
	top: 20%;
	right: 8%;
	width: 4vw;
	opacity: 70%;
	transition: 0.5s all;
}
.social-panel{
	position: absolute;
	color: whitesmoke;
	font-size: 32px;
	display: flex;

}
.home-page .social-panel{
	right: 2%;
	flex-flow: column wrap;
	top: 2%;
	z-index: 30;
}
.home-page .social-panel .item{
	margin: 10px 0 10px 0;
	opacity: 70%;
	cursor: pointer;
	transition: 0.5s all;
	z-index: 30;
}
.home-page .social-panel .item:hover{
	opacity: 100%;
	transform: scale(1.1);
}

/* MENU */
.menu{
	position: fixed;
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%); 
	width: fit-content;

	display: flex;
	flex-flow: row nowrap;
	color: whitesmoke;
	border: 0px solid red;
	transition: 0.5s all;
}
.menu .item{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin: 0px 20px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;

	transition: 0.5s all;
	z-index: 30;
	cursor: pointer;
	border: 0px solid green;
}
.menu .item:hover{
	color: rgba(255, 255, 255, 1);
	transition: 0.5s all;
	transform: translateY(-10px);
	font-size: 30px;
}
.menu .item.active{
	color: rgba(255, 255, 255, 1);
	font-weight: 500;
}

body.about-me .menu{
	flex-direction: column;
	align-items: flex-start;
	top: 8%;
	left: 15vh;
}
body.about-me .menu .item{
	color: rgb(0, 34, 58, 0.7);
	margin: 5px 0 5px 0;
}
body.about-me .menu .item:hover{
	-color: rgba(255, 255, 255, 1);
	transition: 0.5s all;
	transform: translateX(5px);
	color: rgb(0, 34, 58, 1);
	font-size: 20px;
}
body.about-me .menu .item.active{
	color: rgb(0, 34, 58, 1);
	font-weight: 500;
}

body.projects .menu{
	flex-direction: column;
	align-items: flex-end;
	top: 8%; 
	left: auto;
	right: 10vh;
	bottom: auto;
	border: 0px solid green;
	transform: translateX(0);
}
body.projects .menu .item{
	color: rgba(255, 255, 255, 0.7);
	margin: 5px 0 5px 0;
}
body.projects .menu .item:hover{
	color: rgba(255, 255, 255, 1);
	transition: 0.5s all;
	transform: translateX(-5px);
	-color: rgb(0, 34, 58, 1);
}
body.projects .menu .item.active{
	color: rgb(255, 255, 255);
	font-weight: 500;
}

/* BUTTONS */
.button{
	padding: 10px 25px 10px 25px;
	font-size: 20px;
	cursor: pointer;
	z-index: 30;
	border-radius: 15px;
	transition: 0.5s all;
	text-decoration: none;
}
.button.secondary{
	color: #00223A;
	border: 2px solid #00223A;
}
.button.secondary:hover{
	-color:#FB9AB7;
	-border: 2px solid #FB9AB7;
	-background-color: #00223A;
	-color: #FB9AB7;
	-border: 4px solid #00223A;
}

/* FONTS */
.about-page .title{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 200;
	font-size: 80px;
	line-height: 94px;
	/* identical to box height */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	background: linear-gradient(180deg, #00538F 0%, #00223A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;

	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
	margin: 100px 0 0 0;
}
.about-page .heading{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 200;
	font-size: 40px;
	line-height: 65px;
	/* identical to box height */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	background: linear-gradient(180deg, #00538F 0%, #00223A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;

	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
}
.about-page .sub-heading{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	font-size: 25px;
	line-height: 45px;
	margin: 10px 0 15px 0;
	/* identical to box height */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	color: #00223A;
	text-decoration: none;
}
.about-page .text{

	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 35px;
	
	/* or 160% */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	color: rgba(0, 34, 58, 0.7);
}
body.projects .sub-heading{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	font-size: 25px;
	line-height: 45px;
	margin: 10px 0 15px 0;
	/* identical to box height */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	color: #FFFFFF;
	text-decoration: none;
}
body.projects .text{

	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 35px;
	
	/* or 160% */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	color: rgb(245, 245, 245, 0.7);
}
body.projects .projects-page .title{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 200;
	font-size: 80px;
	/* line-height: 94px; */
	/* identical to box height */

	display: flex;
	align-items: center;
	letter-spacing: 0.02em;

	background: #FFFFFF;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;

	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
	margin: 25px 0 25px 5vw;

}


/* ABOUT ME */
.about-page{
	display: flex;
	flex-direction: row;
	border: 0px solid cyan;
	width: 100vw;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 4200px;
	transition: 0.5s all;
	scroll-behavior: smooth;
}
.about-page .section.left{
	width: 15%;
	height: 100vh;
	border: 0px solid red;
	max-width: 350px;
}
.about-page .section.right{
	width: 20%;
	height: 100vh;
	border: 0px solid blue;
	max-width: 400px;
}
.about-page .section.middle{
	width: 50%;
	height: 100vh;
	flex-grow: 1;
	border: 0px solid green;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-page .section.middle .part{
	height: fit-content;
	width: 100%;
	border: 0px solid yellow;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 50px 0 50px 0;
}
.about-page .section.middle .part2{
	display: flex;
	flex-direction: column;
	flex-flow: column wrap;

}
.about-page .section.middle .part2 .items{
	display: flex;
	flex-flow: column wrap;
	max-height: 1200px;
	align-items: center;
	justify-content: space-around;
	border: 0px solid rgb(0, 102, 128);

}
.about-page .section.middle .part2 .items .item{
	max-width: 40%;
	margin: 20px 0 20px 0;
}
.about-page .section.middle .part3 .items{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: space-around;
}
.about-page .section.middle .part3 .items .item{
	max-width: 80%;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	margin: 10px 0 10px 0;
}
.about-page .section.middle .part3 .items .item .text{
	text-align: center;
}
.about-page .section.middle .part3 .items .item .line{
	width: 1px;
	height: 50px;
	background-color: #00223A;

}
.about-page .section.middle .part4 .items{
	display: flex;
	flex-flow: row wrap;
	max-width: 70%;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.about-page .section.middle .part4 .items .item{
	margin: 0 15px 0 15px;
}
.about-page .section.middle .part5 .items{
	display: flex;
	flex-flow: column wrap;
	max-width: 70%;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.about-page .section.middle .part5 .items .item{
	text-align: center;
}
.about-page .section.middle .part5 .items .item .button{
	margin-top: 20px;
}
.about-page .section.right{
	position: relative;
}
.about-page .section.right .sub-menu{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	transform: translateX(0);
	z-index: 30;
	right: 2%;
	top: 8%;
	position: fixed;
	width: 15%;
	border: 0px solid red;
	transition: 0.5s all;
}
.about-page .section.right .sub-menu .item{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin: 0px 20px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	color: rgb(0, 34, 58, 0.7);
	margin: 10px 0 10px 0;
	text-decoration: none;

	transition: 0.5s all;
	z-index: 30;
	cursor: pointer;
	border: 0px solid green;
	text-align: right;
	transition: 0.5s all;
}
.about-page .section.right .sub-menu .item:hover{
	transition: 0.5s all;
	transform: translateX(-5px);
	color: rgb(0, 34, 58, 1);
}
.about-page .section.right .sub-menu .item.active{
	color: rgb(0, 34, 58, 1);
	font-weight: 500;
}

/* SROLLBAR */
::-webkit-scrollbar{
	width: 10px;
	display: none;
}
::-webkit-scrollbar-thumb{
	background: rgba(255, 255, 255, 0.25);
}
::-webkit-scrollbar-thumb:hover{
	background-color: rgba(255, 255, 255, 0.5);
}
::-webkit-scrollbar-track{
	background: black;
}
::-webkit-scrollbar-corner{
	background: black;
}

/* ANIMATIONS */
@keyframes blob-expand-animation{
	0%{
		opacity: 70%;
		transform: scale(1);
	}
	80%{
		opacity: 100%;
		transform: scale(100);
	}
	99%{
		opacity: 0%;
		transform: scale(100);
	}
	100%{
		transform: scale(1);
	}

}
@keyframes blob-contract-animate{
	0%{
		opacity: 0%;
		transform: scale(1000);
	}
	5%{
		opacity: 100%;
		transform: scale(1000);
	}
	100%{
		opacity: 70%;
		transform: scale(1);
	}
}
@keyframes projects-bg-animate{
	0%{
		opacity: 0;

	}
}
@keyframes home-page-animate{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0);
	}
}
