body{
	background: orchid;
}

svg{
	width: 1000px;
	filter:url(#shadow);
	stroke: pink;
	stroke-width: 1.3;
	fill: none;
	stroke-dashoffset: 210;
	stroke-dasharray: 210;
}

.animation{
	animation: draw 5s linear;
	animation-fill-mode: forwards;
}

.backwards{
	animation: backwards-animation 5s linear;
	animation-delay: -10s;
	animation-fill-mode: forwards;
}

@keyframes draw {
	from {
		stroke-dashoffset: 210;
	}
	to{
		stroke-dashoffset: 0;
	}
}

@keyframes backwards-animation{
	from {
		stroke-dashoffset: 0;
	}
	to{
		stroke-dashoffset: 210;
	}
}
button{
	position: relative;
	top: -590px;
	left:350px;
	display:inline-block;
	width: 10%;
	height: 5vh;
	border-radius:  5px;
	outline: none;
}