body {
	background-color: black;
	text-align: center;
	color: chartreuse;
	font-family: 'Hack', monospace;
  overflow-x: hidden;
	scrollbar-width: none;
	height: 100vh;
	width: 100vw;
	font-size: .8em;
	padding: 0;
	margin: 0;
	cursor: cell;
}

.container {
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-x: hidden;
	scrollbar-width: none;
}

p {
  color: black;
}

nav {
	display: flex;
	justify-content: space-around;
	height: 10%;
	align-items: center;
}

.img-container {
	display:flex;
	justify-content: center;
}

img {
	max-width: 500px;
}

#piskel {
	top: 1px;
	left: 1px;
	transition: 5s;
	position: absolute;
	height: .1em;
	width: .1em;
	background-color: deeppink;
	margin: auto;
	cursor: help;
}

#piskel a {
	cursor: help;
}

a {
	color: black;
	font-weight: bolder;
	text-shadow: 0px 0px 1px chartreuse;
	font-size: 1em;
	text-decoration: none;
	transition: 1s;
}

a:hover {
  color: deeppink;
	text-shadow: 0px 0px 20px deeppink;
  letter-spacing: .5vw;
}

.hide {
  color: black !important;
	text-shadow: none;
}

.hide:hover {
	color: deeppink !important;
	transition: 5s;
	font-size: 1em;
	cursor: wait;
}

#go {
  font-size: 1.5vw;
	border-bottom: 1px solid;
	margin-bottom: 50px;
	animation-name: shadow;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: ease-out;
	animation-fill-mode: backwards;
	font-family: monospace;
}

@media screen and (max-width: 700px) {
}

@keyframes shadow {
  0%   {text-shadow: 50px 50px 10px deeppink};
  25%  {text-shadow: 10px 20px 5px };
  50%  {text-shadow: 15px 30px 4px};
  75%  {text-shadow: 20px 60px 3px};
  100% {text-shadow: 30px 50px 2px};
}

