body
{
	margin:0;
	display:flex;
	justify-content: center;
	background-color: #fff;
}

.background
{
	width: 40vw;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	margin-top: 15vh;
	opacity: 0;
	animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}


@media (min-width: 768px)
{
	.background
	{
		width: 20vw;
		margin-top: 35vh;
	}
}