@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes faderise {
	from {
		opacity: 0;
		margin-top: 25px;
	}
	to {
		opacity: 1;
		margin-top: 0;
	}
}

@keyframes unblur {
	from {
		filter: blur(10px);
	}
	to {
		filter: blur(0);
	}
}

@keyframes missiontitle {
	from {
		opacity: 0;
		letter-spacing: 5px;
		font-size: 80px;
	}
	to {
		opacity: 1;
		letter-spacing: -1px;
		font-size: 72px;
	}
}

@keyframes rightleft {
	0% {
		margin-left: 0;
	}
	50% {
		margin-left: 4px;
	}
	100% {
		margin-left: 0;
	}
}

@keyframes leftright {
	0% {
		margin-right: 0;
	}
	50% {
		margin-right: 4px;
	}
	100% {
		margin-right: 0;
	}
}


@keyframes colorcycle {
	0% {
		fill: #5C7FAD;
	}
	50% {
		fill: #D0244B;
	}
	100% {
		fill: #5C7FAD;
	}
}


@keyframes redfill {
	0% {
		fill: #9D1937;
	}
	50% {
		fill: #D0244B;
	}
	100% {
		fill: #9D1937;
	}
}


@media screen and (max-width: 1024px) {
	
	@keyframes missiontitle {
	from {
		opacity: 0;
		letter-spacing: 5px;
		font-size: 60px;
	}
	to {
		opacity: 1;
		letter-spacing: -1px;
		font-size: 50px;
	}
}
	
}