@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
@import "https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap";

/* Reset */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
		line-height: 1;
	}

	ol, ul {
		list-style: none;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
	}

/* Box Model */

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	
/* Page Styles */

	body {
		padding: 0;
		margin: 0;
		width: auto;
		color: #000;
		background: #fff;
		min-height: 100vh;
		font-family: 'PT Serif', serif;
		font-size: 11pt;
		font-weight: 300;
	}
	
	#container {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 0 0 3em 0;
	}
	
	h1 {
		width: 100%;
		text-align: center;
		margin: 0 auto;
		padding: 3em 0;
		display: block;
		font-family: 'Dancing Script', cursive;
		font-size: 12pt;
		font-weight: 700;
		background: #fff;
	}
	
	h1 span {
		padding: 0.25em;
		margin-top: -0.25em;
		font-size: 4.75em;
		background-image: -moz-linear-gradient(90deg, #f7253c -180%, #de81e6 25%, #0199fb 180%);
		background-image: -webkit-linear-gradient(90deg, #f7253c -180%, #de81e6 25%, #0199fb 180%);
		background-image: -ms-linear-gradient(90deg, #f7253c -180%, #de81e6 25%, #0199fb 180%);
		background-image: linear-gradient(90deg, #f7253c -180%, #de81e6 25%, #0199fb 180%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-color: #3d3d3d;
		display: inline-block;
	}
	
	p {
		text-align: center;
		font-size: 1.75em;
		margin-bottom: 2em;
	}
	
	@media screen and (max-width: 736px) {
		
		#container {
			padding: 0 0 2em 0;
		}
		
		h1 span {
			font-size: 4em;
		}
		
		p {
			font-size: 1.65em;
		}
		
	}
	
	@media screen and (max-width: 480px) {
		
		h1 span {
			font-size: 3.25em;
		}
		
		p {
			font-size: 1.35em;
		}
		
	}
	
	@media screen and (max-width: 375px) {
		
		h1 span {
			font-size: 3em;
		}
		
		p {
			font-size: 1.25m;
		}
		
	}
	
	
