:root {
	font-size: 10px;
	font-family: Helvetica, sans-serif;
	font-weight: 400;
	letter-spacing: 0.3pt;
	--fs-h1: 2rem;
	--fs-body: clamp(1.8rem, 1vw + 1rem, 2rem);
	--fs-small: 1.5rem;
	--fs-projects: clamp(2rem, 4vw + 3vh + 0.5rem, 8rem);
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	color: black;
	font-size: var(--fs-body);
	color: white;
	cursor: none;
}
body{
	background-color: white;
}

/* text styles */
h1 {
	font-size: var(--fs-body);
	font-weight: 400;
	text-align: center;
	/* text-decoration: underline; */
	text-transform: uppercase;
}
h2 {
	font-size: var(--fs-small);
	font-weight: 400;
	text-align: center;
	letter-spacing: normal;
}

h3 {
	font-size: var(--fs-small);
	font-weight: 400;
	text-align: left;
	letter-spacing: normal;
}

.projects-text{
	font-size: var(--fs-projects);
	line-height: var(--fs-projects);
	color: white;	
	mix-blend-mode: difference;
	text-decoration: underline;
	text-shadow: 0px 0px 10px rgb(0, 0, 225);
	/* border: 2pt solid blue; */
}

.projects-number {
	font-size: calc(var(--fs-projects)/2);
	line-height: calc(var(--fs-projects)/4);
	color: white;	
	mix-blend-mode: difference;
	text-decoration: none !important;
}
.projectsThumbnailContainer {
	display: flex;
	justify-content: center;
}

.projectsThumbnailItem {
	flex: 0;
	max-height: calc(var(--fs-projects)/2);
	margin: 0px calc(var(--fs-projects)/20);
	top:calc(var(--fs-projects)/5);
	position: relative;
}

.projects-text:hover{
	mix-blend-mode: normal;
	color: black;
	text-shadow: 0px 0px 20px rgb(225, 225 ,0);
}

.projects-text:active{
	text-decoration: none !important;
	mix-blend-mode: normal;
	color: black;
	text-shadow: 0px 0px 20px rgb(0, 0, 225);
}

button {
	background: none;
	border: none;
	/* border: 1pt solid blue; */
	font-size: var(--fs-body);
	letter-spacing: 0.3pt;
}

.activepage {
	letter-spacing: 3px;
}

.spaced: hover,
	button:hover {
	letter-spacing: 3px;
}
.spaced:active,
button:active {
	letter-spacing: 6px;
	text-shadow: 0 0	10px blue;
}

.nav-new{
	mix-blend-mode: difference;
	z-index: 0;
	width: 100%;
	position: fixed !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* changing vh to % as bottom menu dissapears on mobile */
	height: 100% !important;
	min-height: -webkit-fill-available;
}

.column-side {
	display: flex;
	flex-grow: 1;
	max-width: 40px;
	min-width: 30px;
	/* width: 40px; */
	flex-direction: column;
	z-index: 9999999;
	justify-content:center;
	align-items:flex-start;
}

.menu-side {
	flex: 1;
	display: flex;
	justify-content:center;
	align-items:center;
	width: 100%;
	text-align:left;
	z-index: 999999999;
}

.left-side{
	transform: rotate(-90deg);
	text-decoration: underline 1.5pt;
}

.link{
	transform: rotate(90deg);
	text-decoration: underline 1.5pt;
}

.right-side {
	transform: rotate(90deg);
	min-width: 100vh;
	text-align: center;
}

.column-middle {
	display: flex;
	flex: 1 1 0px;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.nav-name{
	flex: 1;
	display: flex;
	align-items:flex-start;
	width: 100%;
	justify-content: center;
	padding: 8px;
	max-height: 80px;
	cursor: pointer;
	user-select: none;
/*	text-align: center;*/
/*	margin-left: auto;*/
/*	margin-right: auto;*/
}

#dinasilanteva {
	position: relative;
}

#dinasilanteva,
#dinasilanteva .bio,
.nav-name,
.column-middle {
	overflow: visible;
}

/*#dinasilanteva,*/
/*#dinasilanteva * {*/
/*	cursor: pointer;*/
/*	user-select: none;*/
/*}*/

#dinasilanteva .bio {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 520px;
	max-width: 80vw;
	text-align: center;
	line-height: 1.25;
	margin: 0;
	z-index: 9999;
}

#dinasilanteva .bio.is-open {
	display: block;
}


/* this is for gallery section project description */
.nav-project{
	flex: 1;
	display: flex;
	align-items: center;
	font-weight: 400;
	/* border: 1px solid blueviolet; */
	z-index: 100;
	max-height: 10vh;
	flex-direction: column;
	justify-content: center; /* align items vertically, in this case */
	align-items: center; /* align items horizontally, in this case */
}

.nav-filler{
	flex: 10;
	width: 100%;
	max-height: 80vh;
}

.menu-bottom {
	display: flex;
	flex: 1;
	width: 100%;
	flex-direction: row;
	max-height: 40px;
	height: 40px;
}

.menu-bottom-item{
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis:100px;
	letter-spacing: 0.5pt;
	max-width: 25%;
	justify-content: center;
	align-self:center;
	text-decoration: underline 2px;
	text-underline-offset: -15px;
}

.menu-filler{
	flex-grow: 4;
	flex-shrink: 2;
}

/* projects page menu */
.projects-menu{
	display: flex;
	flex-direction: column;
	justify-content:space-around;
	align-items: center;
	height: 90vh;
	width: 85%;
	overflow: hidden;
	mix-blend-mode: difference;
	background-color: white;
	position: absolute;
	top: 40px;
}
.project{
	margin: 5px;
	text-align: center;
	width: 100%;
}

/* animation of active menu */
.animated{
	animation-name: a_space;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes a_space {
	from {letter-spacing: 3px;}
	to {letter-spacing: 0px;}
}

/* animation of active menu */
.shake:hover {
	animation-name: a_shake;
	animation-duration: 0.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: alternate;
}

@keyframes a_shake {
	0% {rotate: 0deg;}
	25% {rotate: -3deg;}
	75% {rotate: 3deg;}
	0% {rotate: 0deg;}
}

.jump:hover {
	animation-name: a_jump;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: alternate;
}

@keyframes a_jump {
	0% {transform: translate(0px, 0px);}
	15% {transform: translate(0px, -10px);}
	30% {transform: translate(0px, 0px);}
	45% {transform: translate(0px, -6px);}
	60% {transform: translate(0px, 0px);}
	75% {transform: translate(0px, -3px);}
	90% {transform: translate(0px, 0px);}
}

/* gallery section */
#imageContainer {
	width: 100%;
	height: 100%;
	z-index: 99999;
}

section {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
/* end of gallery section */

/* this is a div over images that contains 3 sections for different cursors */
.nav-filler-cursor{
	width: 80vw;
	height: 60vh;
	display: flex;
	position: absolute;
	top:50px;
	bottom: 100px;
	left: 0px;
	right: 0px;
	/* border: 3px solid blue; */
	margin: auto;
}

.cursor-nav{	 
	flex: 1;
}

.cursor-play,
.cursor-pause,
.cursor-next {	 
	flex: 1;
}

.cursorclick {
	scale: 110%;
}

#cursor {
	z-index: 999999999999999;
}

/* all curos classes common style */
.downarrow,
.stop,
.flower,
.circle, 
.heart, 
.plus, 
.square, 
.triangle, 
.doubletriangle, 
.doubletriangleReverse,
.diamond,
.cog, 
.cross,
.menu, 
.ring {
	background-color: white;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: width .2s, height .2s, opacity .2s;
	mix-blend-mode: difference;
}

/* shape1 */
.heart {
	transform: translate(-20px, -20px);
}

.heart:before,
.heart:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 32px;
	left: 20px;
	border-radius: 10px 10px 0 0;
	transform: rotate(-45deg);
	transform-origin: 0 100%;
	background-color: white;
}

.heart:after {
	left: 0;
	transform-origin: 100% 100%;
	transform: rotate(45deg);
	background-color: white;
}

/* shape2 - two triangles */
.doubletriangle {
	width: 0;
	height: 0;
	border-top: 20px solid black;
	border-bottom: 20px solid black;
	border-left: 40px solid white;
	mix-blend-mode: difference;
}

.doubletriangle:before {
	position: absolute;
	content: "";
	transform: translate(-50%, -50%);
	border-top: 20px solid black;
	border-bottom: 20px solid black;
	border-left: 40px solid white;
}

.doubletriangleReverse {
	width: 0;
	height: 0;
	border-top: 20px solid black;
	border-bottom: 20px solid black;
	border-right: 40px solid white;
	mix-blend-mode: difference;
}

.doubletriangleReverse:before {
	position: absolute;
	content: "";
	transform: translate(-50%, -50%);
	border-top: 20px solid black;
	border-bottom: 20px solid black;
	border-right: 40px solid white;
}

/* shape3 - one triangle */
.triangle {
	width: 0;
	height: 0;
	border-top: 20px solid black;
	border-bottom: 20px solid black;
	border-left: 40px solid white;
	background-color: white;
}
.downarrow{
	width: 0;
	height: 0;
	border-right: 30px solid black;
	border-top: 40px solid white;
	border-left: 30px solid black;
	background-color: white;
}

/* shape4 - square */
.square {
	width: 40px;
	height: 40px;
}

.diamond {
	width: 30px;
	height: 30px;
	transform: translate(-15px, -15px) rotate(45deg) ;
}

/* shape5 - menu */
.menu {
	width: 40px;
	height: 10px;
	transform: translate(-20px, -20px);
}

.menu:before {
	position: absolute;
	content: "";
	left: 0%;
	top: 150%;
	width: 40px;
	height: 10px;
	background-color: white;
}
.menu:after {
	position: absolute;
	content: "";
	left: 0%;
	top: 300%;
	width: 40px; 
	height: 10px;
	background-color: white;
}

/* shape6 - circle */
.circle {
	width: 20px; 
	height: 20px; 
	border-radius: 50%;
	/* transform: translate(10px, 10px); */
}

.ring {
	width: 40px; 
	height: 40px; 
	border-radius: 50%;
}
.ring:after {
	position: absolute;
	content: "";
	width: 20px; 
	height: 20px; 
	border-radius: 50%;
	background-color: white;
	transform: translate(10px, 10px);
	mix-blend-mode: difference;

}

/* shape7 - plus */
.plus {
	width: 30px; 
	height: 10px; 
	background-color: white;

}
.plus:before {
	position: absolute;
	content: "";
	width: 30px; 
	height: 10px; 
	transform: rotate(-90deg);
	background-color: white;
}
.plus:after{
	position: absolute;
	content: "";
	width: 30pt;
	height: 30pt;
	border-radius: 50%;
	background-color: white;
	mix-blend-mode: difference;
	transform: translate(-5px, -15px);
}
/* .plus {
	width: 40px; 
	height: 10px; 
}
.plus:after {
	position: absolute;
	content: "";
	width: 40px; 
	height: 10px; 
	transform: rotate(-90deg);
	background-color: white;
} */

/* shape8 - cross */
.cross {
	width: 40px; 
	height: 10px; 
	transform: translate(-20px, -10px) rotate(45deg) ;
	background-color: white;
}
.cross:after {
	position: absolute;
	content: "";
	width: 40px; 
	height: 10px; 
	transform: rotate(-90deg);
	background-color: white;
}

.cog {
	width: 40px; 
	height: 10px; 
	background-color: white;
	/* mix-blend-mode: difference; */
	/* transform: rotate(45deg); */
}
.cog:after {
	position: absolute;
	content: "";
	width: 40px; 
	height: 10px; 
	background-color: white;
	transform: rotate(60deg);
}

.cog:before {
	position: absolute;
	content: "";
	width: 40px; 
	height: 10px; 
	background-color: white;
	/* mix-blend-mode: difference; */
	transform: rotate(-60deg);
}

.flower {
	width: 13px;
	height: 40px;
	border-radius: 10px;
	transform: rotate(30deg) translate(-20px, -15px);

	/* transform: rotate(-45deg); */
	/* transform-origin: 0 100%; */
	/* background-color: white; */
}
.flower:after {
	position: absolute;
	content: "";
	width: 13px;
	height: 40px;
	border-radius: 10px;
	background-color: white;
	transform: rotate(60deg);
}

.flower:before {
	position: absolute;
	content: "";
	width: 13px;
	height: 40px;
	border-radius: 10px;
	background-color: white;
	/* mix-blend-mode: difference; */
	transform: rotate(-60deg);
}

/* pause */
.stop {
	width: 40px; 
	height: 15px; 
	transform: translate(-20px, -10px) rotate(90deg) ;
	background-color: white;
}
.stop:after {
	position: absolute;
	content: "";
	width: 40px; 
	height: 15px; 
	transform: translate(0px, -25px);	
	background-color: white;
}

/* end of cursors */


.animatedGradient {
	background: linear-gradient(90deg, rgb(193, 255, 193), rgba(0, 0, 0, 0), rgb(253, 253, 156));
	background-size: 200% 200%;
	left: 0;
	right: 0%;
	animation: gradient2 16s linear infinite;
	background-blend-mode: normal;
	background-position: 75% 25%;
	/* opacity: 0.5; */
	/* mix-blend-mode: multiply; */
}
@keyframes gradient2 {
	0% {background-position: 0% 0%;}
	25% {background-position: 0% 100%;}
	75% {background-position: 100% 0%;}
	100% {background-position: 0% 0%;}
}


@media screen and (max-width: 810px) {
.stop,
.flower,
.circle, 
.heart, 
.plus, 
.square, 
.triangle, 
.doubletriangle, 
.diamond,
.cog, 
.cross,
.menu,
#cursor {
	visibility: hidden;
	display: none;
}

* {
	cursor:default;
	@keyframes a_space {
	from {font-weight: 400;}
	to {font-weight: 600;}
}
	
}

