body { 
	background-color: white/*#f5a9b8*/;
	font-family: arial;
	color: black;
}

#el-1,
#el-2, 
#el-3,
#el-4, 
#el-5,
#el-6,
#el-7, 
#el-8,
#el-9,
#el-10,
#el-11,
#el-12,
#el-13,
#el-14,
#el-15,
#el-16,
#el-17,
#el-18,
#el-19,
#el-20,
#el-21 {
	display: none;
}

#start {
	z-index: -100;
	background: transparent;
	height: 17%;
	width: 20%;
	border: 2px solid black;

    position: absolute;
   		top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 	
	animation: go 4s infinite;
}

@keyframes go {
  50% {box-shadow: 10px 20px 30px #39FF14;}
}

#start:hover {
	z-index: -100;
	background: #39FF14;
	height: 17%;
	width: 20%;
	border: 2px solid black;

    position: absolute;
   		top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 	
}

#start h1 {
	color: black;
	font-size: 5vw;
	/*font-weight: bold;*/
	text-align: center;
	    position: absolute;
   		top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
/*  	text-shadow: -1px -1px 0 black,
  				1px -1px 0 black, 
  				-1px 1px 0 black,
  				1px 1px 0 black; */	
}

#text-1 {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0.5%;
}

#text-2 {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0.5%;
}


#el-19 {
	animation: mymove 5s infinite;
}

@keyframes mymove {
  25% {top: 20%;}
  50% {left: 20%;}
  75% {bottom: 20%}
}


p {
	color: #39FF14;
	font-size: 5vw;
	font-weight: bold;
	line-height: 1.2;
  	text-shadow: -1px -1px 0 black,
  				-1px 1px 0 black,
  				1px -1px 0 black, 
  				1px 1px 0 black;
}

span {
	font-family: arial;
/*	font-size: 1vw;*/
	color: black;
}

img {
	width: 50%;
	height: auto;
	border: 2px black solid;
	/*filter: grayscale(1);*/
	animation: next 5s infinite;
}

@keyframes next {
  50% {box-shadow: 5px 10px 15px black;}	
}

.big img {
	width: 80%;
	height: auto;	
}

