html{
	background-color: #000;

	margin: 0 ;
	padding: 0 ;

	overflow-x: hidden ;
}
canvas, .circlesAndName{
	position: relative;

	top:  100px;
}
body{
	color: #fff;

	font-family: consolas;

	opacity: 0 ;

	transition: all 1s linear ;
}
.menu{
	position: absolute;
	margin-top: 15px;

	width:  40%;
	height: 50px;

	font-size: 1.5em;

	display: flex;
	justify-content: space-evenly;
	align-content: center ;
}
.menu :nth-child(1){
	text-decoration: underline;
	text-underline-position: under;
	text-underline-offset: 20%;
}
.language{
	position: absolute;
	margin: 15px 0 0 80%;

	user-select: none;
}
.menu div, .language{
	padding: 10px 15px 10px;

	cursor: pointer;

	transition: all .5s linear ;

	border-radius: 60px;
}
.menuAdap{
	display: none;

	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;

	position: absolute;
	top: 20px;
	left: 40px;

	width: 50px;
	height: 60px;

	background-color: black;

	z-index: 5 ;

	cursor: pointer;

	transition: all .5s ease;

	/*box-shadow: 0px 0px 10px 2px #fff;
	border-radius: 5%;*/
}
.strip{
	width: 40px;
	height: 10px;

	margin-bottom: 4px;

	background-color: #fff;

	transition: all .5s ease;

	animation: rotationStrip 5s ease infinite;
}
.cross{
	width: 30px;

	margin-top: 30px;

	text-align: center;

	display: none;

	color: #fff;

	transform: scale(1.5);

	cursor: pointer;
}
.cross:hover{
	transform: scale(2.5);
}
@keyframes rotationStrip{
	from{
		transform: rotate(0deg) ;
	}
	60%{
		transform: rotate(180deg) ;
	}
}
.menuAdap:hover .strip{
	margin-bottom: 5px;
}
.menuAdap :nth-child(1){
	margin-top: 10px;
}
.cross{
	z-index: 6;
}
.aboutMe{
	color:  #fff;
}
.fieldForDrawing{
	margin: -340px 0 20% 60%;

	background-color: rgba(30, 30, 80, .2);

	border-radius: 60px;

	transition: all .5s ease;
}
.wowItsMyPhoto{
	opacity: .5 ;

	transition: all 1s ease;

	display: inline-block;
	width: 400px;
	height: 400px;
}
.part1, .part2{
	background: url('pic/me.webp');
	background-size: cover;

	clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);

	width: 450px;
	height: 450px;

	position: absolute;
	margin: 150px 120px;

	filter: brightness(80%);

	transition: all 1s ease ;
}
.part2{
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.wowItsMyPhoto:hover{
	opacity: 1 ;
}
.wowItsMyPhoto:hover .part1, .wowItsMyPhoto:hover .part2{
	width: 350px;
	height: 350px;

	margin: 120px 180px;

	transform: rotate(45deg) ;

	filter: brightness(100%);

	border-radius: 10px;
}
.wowItsMyPhoto:hover .part2{
	margin: 180px 180px;
}
.descriptionOfMe{
	width: 55%;
	font-size: 3em;

	position: absolute;
	margin: 250px 0 0 50px;
}
.mySkills{
	font-size: 2.5em;

	text-align: center;

	position: relative;
	margin: 0px auto 100px;

	transition: all 1s ease;
}
.sliders{
	width: 40%;

	margin: 0px 0 150px 80px;

	transition: all 1s ease;
}
.fieldSlider{
	width: 100%;
	height: 20px;

	position: relative;

	margin-bottom: 30px;
}
.fieldSlider span{
	font-size: 1.2em;
}
.firstValueSlider{
	margin: 10px 0 0 20px;
}
.lastValueSlider{
	margin: 10px 0 0 400px;
}
.nameOfSkill{
	width: 50%;

	position: absolute;
	top: 100%;
	left: 105%;

	cursor: pointer ;
}
.percentageOfStudy{
	position: absolute;
	top: 100%;
	left: 130%;
}
.slider {
    -webkit-appearance: none;
    appearance: none;

    width: 100%;
    height: 5px;

    background: rgba(30, 30, 80);

    border-radius: 5px ;

    outline: none;

    -webkit-transition: .2s;
    transition: opacity .2s;

    cursor: pointer;
}
.slider:hover{
	opacity: 1 ;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 25px;
    height: 25px;

    background: #fff;

  	border-radius: 15px ;
}
.josukeWithLap{
	width: 200px;

	position: absolute;
	margin: -30% 0 0 70%;

	transform: scale(1) ;
	transition: all .5s ease;

	animation: changeColorHue 3s linear 0s infinite;

	cursor: pointer;
}
@keyframes changeColorHue {
	from {
		filter: hue-rotate(0deg);
	}
	20%{
		filter: hue-rotate(72deg);
	}
	40%{
		filter: hue-rotate(144deg);
	}
	60%{
		filter: hue-rotate(216deg);
	}
	80%{
		filter: hue-rotate(288deg);
	}
	to{
		filter: hue-rotate(360deg);
	}
}
.fullDescription{
	color: rgba(255, 255, 255, .8);

	width: 80%;

	text-align: center ;
	margin: 0 auto 400px ;

	transition: all .5s ease;
}
.zeus{
	margin: -40% auto 0;

	transition: all .5s ease;
}
.footer{
	position: absolute;

	display: flex;
	justify-content: center;
	align-items: center;

	flex-direction: column ;

	width: 100%;
	height: 150px;

	background-color: rgba(30, 30, 80, .2);

	border-radius: 20px;

	margin: 150px 0 0;

	clip-path: polygon(0 30%, 40% 0, 60% 0, 100% 30%, 100% 100%, 0 100%);

	transition: all .5s ease;
}
.responsibility{
	width: 32%;
	font-size: 1.2em;
}
.year{
	width: 100px;
	font-size: 2.5em;
}
.toUp{
	width: 80px;
	height: 80px;

	border-radius: 40px;

	position: fixed;
	top: 80%;
	left: 90%;

	transition: all .5s ease ;

	cursor: pointer;
}
.toUp:hover .arrow{
	transform: rotate(-135deg) ;
	left:  38%;
}
.toUp:hover .arrow::before{
	transform: rotate(90deg) ;
	top: -15px;
	left:  15px;
}
.arrow, .arrow::before{
	width:  40px;
	height: 10px;

	background-color: #000;

	border-radius: 5px;

	position: relative;
	top: 40%;
	left:  10%;

	transform: rotate(-45deg) ;

	transition: all .5s ease;
}
.arrow::before{
	content: '';

	position: absolute;
	top: 15px;
	left:  40%;

	background-color: #000;

	transform: rotate(-90deg) ;
}
::-webkit-scrollbar-button {
	background-image:url('');
	background-repeat:no-repeat;
	width:10px;
	height:0px;
}

::-webkit-scrollbar-track {
	background: white;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	background-color: black;
}

::-webkit-resizer{
	background-image:url('');
	background-repeat:no-repeat;
	width:4px;
	height:0px
}

::-webkit-scrollbar{
	width: 6px;
}
