body
{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-image: url("./images/background-image-galaxy.gif");
	height: 100vh;
	padding: 0;
	margin: 0;
}

.jajaa
{
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: linear-gradient(#940E2E,#7E0814,#1C0003);
	animation: animate 3.0s linear infinite;
}

@keyframes animate
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}

.jajaa span
{
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(#940E2E, #7E0814, #1C0003);
}

.jajaa span:nth-child(1)
{
	filter: blur(10px);
}
.jajaa span:nth-child(2)
{
	filter: blur(25px);
}
.jajaa span:nth-child(3)
{
	filter: blur(40px);
}
.jajaa span:nth-child(4)
{
	filter: blur(60px);
}

.jajaa:after
{
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	background: black;
	border-radius: 49%;
}

.linkit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
}
.linkki {
	flex: 1;
}

.linkki:nth-child(1) {
	cursor: w-resize;
}
.linkki:nth-child(2) {
	cursor: e-resize;
}
