html {
	/* Set background and text color. */
	background-color: #161617;
	color: #fff;
}

body {
	/* Set font family and padding. */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 3%;
}

.gradient-text {
	/* Fallback: Set a background color. */
	color: #f83600;
	
	
	/* Create the gradient. */
	background-image: linear-gradient(45deg, #fe8c00 0%, #f83600 100%);
	
	/* Set the background size and repeat properties. */
	background-size: 100%;
	background-repeat: repeat;
  
	/* Use the text as a mask for the background. */
	/* This will show the gradient as a text color rather than element bg. */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
		background-clip: text;

	/* Set the text size. */ 
	font-size: 3em;
  }
  
h1,h2,p {
	/* Center align text.*/
	text-align: center;
}

a.text-link:link, a.text-link:visited, a.text-link:hover,a.text-link:active {
	/* Set the link color white. */
	text-decoration:none;
	color:#fff;
}