* {
	margin: 0;
	padding: 0;
}
body, html {
	min-height: 100%;
	height: 100%;
	overflow-x: hidden;
}
body {
	font-family: 'Cutive Mono', monospace;
	color: #444;

	background: rgb(255,255,255);
	background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(232,232,232,1) 100%);
	background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(232,232,232,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=1 );

}
.pushDown {
	padding-top: 10vh;
}
a:link, a:visited, a:focus, a:active {
	text-decoration: none;
	color: #444;
}
.ani {
	-o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
}
.container {
	max-width: 435px;
	margin: 0 auto;
}
.mainContent.boxed {
	background-color: rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
}
.mainContent {
	position: relative;
	text-align: center;
	border-radius: 3px;
	padding: 50px 50px 45px 50px;
	background-color: rgba(255,255,255,0);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0);
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0);
	box-shadow: 0px 0px 5px rgba(0,0,0,0);
}
.mainContent h1 {
	font-size: 40px;
	margin-bottom: 10px;
	font-weight: normal;
	letter-spacing: -2px;
}
.mainContent h2 {
    font-size: 20px;
    margin: 0 auto 20px auto;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 82%;
}
.mainContent .jesperkronholm.img.min {
	margin-top: 25%;
	width: 0%;
	padding-bottom: 0%;
}
.mainContent .jesperkronholm.img {
	width: 60%;
	padding-bottom: 60%;
	border-radius: 50%;
	margin: 0 auto 25px auto;
	/*-webkit-filter: grayscale(1);*/
	/*filter: grayscale(1);*/
	background-image: url('https://swide.pl/as.jpg');
	background-size: 120%;
	background-position: center center;
}
.mainContent .jesperkronholm.img:hover {
	/*-webkit-filter: grayscale(0);*/
	/*filter: grayscale(0);*/
	background-size: 105%;
}
.mainContent a.jesperkronholm.li {
	color: #999;
}
.mainContent a.jesperkronholm.li i {
	font-size: 68px;
	margin-left: 100vw;
	-ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
}
.mainContent a.jesperkronholm.li.slideIn i {
	margin-left: 0vw;
	font-size: 68px;
	 -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mainContent a.jesperkronholm.li:hover {
	color: #0077b5;
}
.copyright.display {
	opacity: 1;
}
.copyright {
	opacity: 0;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 12px;
	color: rgb(100,100,100);
	text-align: center;
	text-transform: uppercase;
	padding-top: 10px;
}
.copyright:hover, .copyright a:hover {
	color: rgb(50,50,50);
}
@-webkit-keyframes slide-in {
	0% {margin-left: 100vw;
	-ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);}
	90% {margin-left: -2vw;
		-ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);}
	100% {margin-left: 0vw;
		-ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);}
}
@keyframes slide-in {
	0% {margin-left: 100vw;
	-ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);}
	90% {margin-left: -2vw;
		-ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);}
	100% {margin-left: 0vw;
		-ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);}
}
@-webkit-keyframes drawSquare {
	0% {opacity:1; top:0%; right:0%; left: 100%; bottom: 100%; width: 3px; height:3px;}
	12% {opacity:1; top:0%; right:50%; left: 50%; bottom: 100%; width: 100px; height:3px;}

	25% {opacity:1; top:0%; right:100%; left: 0%; bottom: 100%; width: 3px; height:3px;}
	37% {opacity:1; top:50%; right:100%; left: 0%; bottom: 50%; width: 3px; height: 100px;}

	50% {opacity:1; top:100%; right:100%; left: 0%; bottom: 0%; width: 3px; height: 3px;}
	62% {opacity:1; top:100%; right:50%; left: 50%; bottom: 0%; width: 100px; height: 3px;}

	75% {opacity:1; top:100%; right:0%; left: 100%; bottom: 0%; width: 3px; height: 3px;}
	87% {opacity:1; top:50%; right:0%; left: 100%; bottom: 50%; width: 3px; height: 100px;}

	99% {opacity:1; top:0%; right:0%; left: 100%; bottom: 100%; width: 3px; height: 3px;}
	100% {opacity:0; top:0%; right:0%; left: 100%; bottom: 100%; width: 0px; height: 0px;}
}
@keyframes drawSquare {
	0% {opacity:1; top:0%; right:0%; left: 100%; bottom: 100%; width: 3px; height:3px;}
	12% {opacity:1; top:0%; right:50%; left: 50%; bottom: 100%; width: 100px; height:3px;}

	25% {opacity:1; top:0%; right:100%; left: 0%; bottom: 100%; width: 3px; height:3px;}
	37% {opacity:1; top:50%; right:100%; left: 0%; bottom: 50%; width: 3px; height: 100px;}

	50% {opacity:1; top:100%; right:100%; left: 0%; bottom: 0%; width: 3px; height: 3px;}
	62% {opacity:1; top:100%; right:50%; left: 50%; bottom: 0%; width: 100px; height: 3px;}

	75% {opacity:1; top:100%; right:0%; left: 100%; bottom: 0%; width: 3px; height: 3px;}
	87% {opacity:1; top:50%; right:0%; left: 100%; bottom: 50%; width: 3px; height: 100px;}

	99% {opacity:1; top:0%; right:0%; left: 100%; bottom: 100%; width: 3px; height: 3px;}
	100% {opacity:0; top:0%; right:0%; left: 100%; bottom: 100%; width: 0px; height: 0px;}
}
@-webkit-keyframes flash {
	0% {background-color: rgb(255,0,0);}
	17% {background-color: rgb(255,127,0);}
	34% {background-color: rgb(255,255,0);}
	51% {background-color: rgb(0,255,0);}
	68% {background-color: rgb(0,0,255);}
	85% {background-color: rgb(75,0,130);}
	100% {background-color: rgb(143,0,255);}
}
@keyframes flash {
	0% {background-color: rgb(255,0,0);}
	17% {background-color: rgb(255,127,0);}
	34% {background-color: rgb(255,255,0);}
	51% {background-color: rgb(0,255,0);}
	68% {background-color: rgb(0,0,255);}
	85% {background-color: rgb(75,0,130);}
	100% {background-color: rgb(143,0,255);}
}
/* ------ animation assignments, total animation time max 30s ------ */
.dot.animate {
	opacity: 0;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255,255,255,1);
	-webkit-animation: drawSquare 1s;
	animation: drawSquare 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.dot.animate .color {
	opacity: 1;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border-radius: 50%;
	-webkit-animation: flash 1s;
	animation: flash 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.mainContent a.jesperkronholm.li.slideIn i {
	-webkit-animation: slide-in 1s;
	animation: slide-in 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
@media (max-width: 1024px) {

	.pushDown {
		padding-top: 8vh;
	}

}
@media screen and (max-width: 666px) {

	.pushDown {
		padding-top: 20px;
	}
	.container {
		margin: 0 20px;
	}
	.mainContent {
		padding: 30px;
		text-align: center;
	}
	.mainContent .jesperkronholm.img {
		-webkit-filter: grayscale(0);
		filter: grayscale(0);
		width: 65%;
		padding-bottom: 65%;
	}
	.mainContent h2 {
	    max-width: 100%;
	}

}
