
@import url('https://fonts.googleapis.com/css?family=Dancing+Script');

body{
	text-align:center;
}
h1{
	display:block;
	background-color:skyblue;
	position:relative;
	color:blue;
	font-family:'Dancing Script',cursive;
}
h1::after,h1::before{
	content:'';
	position:absolute;
	width:30px;
	height:2px;
	height:2px;
	background-color:currentColor;
	top:0.6em;
	
}

h1::before{
	left:315px;
}
h1::after{
	right:320px;
}

	






