@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: Jupiter;
	src:url(Jupiter.ttf);
}

body
{
	background-image:url("Background.png");
	height: 90vh;
	width: 100vw;
	animation: moveIt 35s infinite;
	animation-timing-function: linear;
	margin: 0px;
}

#titel
	{
		font-family: Jupiter;
		text-align: center;
		color: white;
		font-size: 400%;
		margin-bottom: 0px;
	}

#Ondertitel
{
	font-family: Jupiter;
	text-align: center;
    color: white;
	font-size: 250%;
	margin-top: 0px;
}

#Ufo
{
	width: 150px;
	height: 150px;
	margin-left: 15%;
	margin-top: 7%;
	animation: Vlieg 1.5s ease-in-out infinite;
	animation-direction: alternate;
}

.GetAndroid
{
	width: 15%;
	margin-left: 32%;
	margin-top: 10%;
}

.GetApple
{
	width: 15%;
	margin-left: 5%;
	margin-top: 1%;
}

#mobile
{
	display: none;
}
@media screen and (max-width: 600px) {
  .GetAndroid {
    width: 40%;
	margin-left: 30%;
	margin-top: 40%;
  }

	#Ufo
	{
		margin-left: 32%;
		margin-top: 50px;
	}
	
	.GetApple
	{
	width: 40%;
	margin-left: 30%;
	margin-top: 5%;
	}
	
	#mobile
	{
		display: block;
	}
	
	#desktop
	{
		display: none;
	}
	
	body
	{
	height: 90vh;
	width: 100vw;
	animation: moveItMobile 35s infinite;
	animation-timing-function: linear;
	margin: 0px;
	}
}

@keyframes moveIt {
  from {background-position: left center;}
  to {background-position: 189% center;}
}

@keyframes moveItMobile {
  from {background-position: left center;}
  to {background-position: 112% center;}
}

@keyframes Vlieg
{
	from{transform: translateY(-50%);}
	to{transform: translateY(50%);}
}
