:root {
	--bacground-Block-1: rgb(100, 80,20);
}
@import url('./Fonts/__fonts.css');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
scroll-behavior: smooth;

}
a {
	text-decoration: none;
	cursor: url('../cursors/Groovy/basic/dark/hand.cur'), pointer;
	color: white;
}
body {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: url('../cursors/Groovy/basic/dark/arrow.cur'), pointer;
	background: black;
}
.fix-img {
	vertical-align: top;
}
.wrapper {
	margin: auto;
	padding: 10px 10px;
	max-width: 1200px;
	width: 100%;
	height: 100%;
}
/* start of prescreen styles */

.prescreen {
	position: relative;
	min-height: 100vh;
	background: black;
}
.prescreen__flex-box {
	margin-top: 200px;
	color: black;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.prescreen__title{
	font-family: 'Anybody', cursive;
	font-size: 50px;
	color: #FFFFFF;
	text-align: center;
}
.presceen__written-text{
	font-family: 'Lucida Console', arial;
	margin: auto;
	position: relative;
	font-size: 20px;
	width: fit-content;
	color: white;
}
.presceen__written-text:after{
	content: '|';
	position: absolute;
	right: -5px;
	opacity: 1;
	animation: blink infinite 1s linear;
}

.presceen__written-text-box{
	min-width: 250px;
	padding: 5px;
	border-bottom: gray 1px solid;
}
@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.prescreen__pull-down__title {
	font-family: 'Anybody', cursive;
	color: white;
	text-align: center;
	margin: 10px;
	font-size: 30px;
	user-select: none;
}
.prescreen__pull-down {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0px);
	animation: blink__arrow infinite 4s ease-in-out;
	transition: .5s;
}
.prescreen__pull-down img{
	height: 100px;
	transform: rotate(180deg);
}
.prescreen__pull-down:hover {
	opacity: 1;
}

@keyframes blink__arrow{
	0%{
		transform: translate(-50%, 0px);
		opacity: 1;
	}
	50%{
		transform: translate(-50%, -10px);
		opacity: 0.4;
	}
	100%{
		transform: translate(-50%, 0px);
		opacity: 1;
	}
}

/* end of prescreen styles */

/* start of block-1 styles */

.block-1 {
	overflow: hidden;
	clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
	padding-top: 200px;
	background: var(--bacground-Block-1);
}
.block-1__flex-box {
	margin-bottom: 200px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}
.block-1__frame-1 {
	margin-right: 20px;
	margin-bottom: 30px;
	border:  black 10px solid;
	box-shadow: black -2px 2px 5px 0px;
	transform: rotate(15deg);
}
.block-1__frame-1 img {
	border: 10px solid black;
	background: var(--bacground-Block-1);
	transform: rotate(-15deg);
	height: 240px;
	box-shadow: black -2px 2px 5px 0px;
	width: 240px;
}
.console__top {
	width: 500px;
	height: 20px;
	background: white;
	border-top-left-radius: 4px;
	background: rgb(130,180,150);
	border-top-right-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: flex-end
}
.console__content {
	font-family: 'Lucida Console', arial;
	height: 250px;
	color: white;
	background: black;
	width: 500px;
	user-select: none;
	border-left: gray 2px solid;
	border-right: gray 2px solid;
	border-bottom: gray 2px solid;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}
.block-1__console{
	box-shadow: black -2px 2px 5px 0px;
}
.console__fullscreen{
	height: 10px;
	width: 10px;
	border: 2px solid black;
}
.console__close {
	height: 10px;
	width: 2px;
	transform: rotate(45deg);
	background: black;
	position: relative;
	margin: 0 10px 0 7px;
}
.console__close:after {
	content: '';
	height: 10px;
	position: absolute;
	top: 0;
	width: 2px;
	transform: rotate(90deg);
	background: black;
}
.console_blinken-el{
	animation: blink infinite 2s;
}
/* end of block-1 styles */

/* start of who-i-am styles */

.who-i-am {
	font-family: 'Anybody', cursive;
	color: white;
}

.who-i-am__title {
	position: relative;
	height: 100px;
	width: fit-content;
	margin: auto;
	font-size: 40px;
}
.who-i-am__title span {
	white-space: nowrap;
	user-select: none;
	width: fit-content;
	text-align: center;
	position: absolute;
	font-size: 50px;
}
.who-i-am__title span:nth-child(2){
	animation: clip-path-Anim infinite 6s linear 2s;
	color: #959595;
}
.who-i-am__title span:nth-child(3){
	animation: clip-path-Anim infinite 6s 2s linear;
	color: black;
}
.who-i-am__title span:nth-child(4){
	animation: clip-path-Anim infinite 6s 4s linear;
	color: white;
}
.who-i-am__title span:nth-child(1){
	color: #1e1e1e;
}

@keyframes clip-path-Anim{
	0%{
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	}
	33%{
		clip-path: polygon(0 0, 33% 0, 33% 100%, 0 100%);
	}
	77% {
		clip-path: polygon(77% 0, 100% 0, 100% 100%, 77% 100%);
	}
	100%{
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	}
}
.who-i-am__flex-box {
	display: flex;
}
.who-i-am__biography {
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	padding: 10px;
}
/* end of who-i-am  styles */

/* start of block-2 styles */
.block-2{
	color: white;
	font-family: 'Anybody', cursive;
}
.block-2__title{
	font-size: 50px;
	text-align: center;
}
.block-2__sub-title {
	margin-bottom: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	color: gray;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	text-transform: uppercase;
}
.block-2__statements {
	font-family: 'Oswald', sans-serif;
	position: relative;
	margin: auto;
	margin-bottom: 20px;
	width: 500px;
}
.block-2__statement{
	user-select: none;
}
.joke-hidden {
	display: none;

}


/* end of end block-2 styles */

/* start of contacts styles */

.contacts__flex-box{
	font-family: 'Lucida Console', arial;
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 25px 0;
	justify-content: space-around;
	align-items: center;
	color: white;
	text-transform: uppercase;
}
/* end of contacts styles */

/* start of block-3 styles */

.my-sites__title{
	color: white;
	font-family: 'Anybody', cursive;
	text-align: center;
	font-size: 40px;
	font-weight: 600	;
}
.my-sites__flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center	;
}
.my-sites__card {
	border: 4px solid black;
	position: relative;
	z-index: 100;
	margin: 30px;
	width: 250px;
	height: 300px;	

	background: black;
	transition: .3s;
	box-shadow: 0px 0px 100px 2px rgba(255,255,255,0.01);
}
.my-sites__card__img{
	position: relative;
	border: 2px solid rgba(20, 20, 20, 1);
	box-shadow: 2px 2px 20px 0px rgba(0,0,0,0);
	z-index: 2;
	width: 100%;
	height: 100%;
	transition: 0.5s;
	overflow: hidden;
}
.my-sites__card__img img {
	width: 100%;
}
.my-sites__card__back{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	background: rgba(1, 1, 1, 1.0);
	display: flex;
	flex-direction: column;
	background: -webkit-radial-gradient(top right, rgba(1, 1, 1, 1.0), rgba(55, 55, 55, 1.0));
	background: -moz-radial-gradient(top right, rgba(1, 1, 1, 1.0), rgba(55, 55, 55, 1.0));
	background: radial-gradient(to bottom left, rgba(1, 1, 1, 1.0), rgba(55, 55, 55, 1.0));
}
.my-sites__card__back__link{
	font-family: 'Lucida Console', arial;
	display: block;
	width: fit-content;
	font-weight: 500;
	margin: auto;
}
.my-sites__card__back__content {
	height: 70%;
	color: white;
	font-family: 'Lucida Console', arial;
	font-weight: 500;
}
.my-sites__card__back__content__time {
	position: absolute;
	bottom: 10px;
	color: gray;
	font-size: 14px;
}
.my-sites__card__img:hover {
	transform: translateX(0px);
}
.my-sites__card[active] {
	z-index: 9000;
	transition: box-shadow 0.7s;
	box-shadow: 0px 0px 20px 2000px rgba(0,0,0,0.8);
}
.my-sites__card[active] .my-sites__card__img{
	transform: translate(0%,-93%) scale(0.8);
	box-shadow: 2px 2px 20px 0px rgba(0,0,0,1);

}
/* end of block-3 styles */
/* adaptive */

@media (max-width: 420px){
	.block-1__frame-1{
		margin-bottom: 50px;
	}
	.console__top{
		width: 320px;
	}
	.console__content{
		overflow: hidden;
		height: 350px;
		width: 320px;
	}
	.block-1__console {
		width: 320px;
	}
	.block-1{
		clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
	}
	.block-2__statements{
		width: 100%;
	}
	.prescreen__pull-down{
		bottom: 50px;
	}
	.who-i-am__title{
		transform: translateX(-70px);
	}
}