:root {
	--alpha: 0.8; // We're changing this value via JS with interaction
}

$c_base: linen;
$c_selection: lightblue; // Hotpink

// You can change the typo color here. Just edit the RGB:
$c_typo: navy; // White

$anim: 0.1s linear;

html, body {
	height: 100%;
	display: block;
}

body {
	background-color: $c_base;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 50%;
	position: absolute;
	left: 25%;
	top: 20%;
	overflow-x: hidden;
	display: block;
}

::selection {
	background-color: $c_selection;	
}

.heading {
	height: 100%;
	display: block;
	margin-top: 10%;
	align-items: center;
	justify-content: center;
	
}

.typo {
	color: $c_typo;
	cursor: default;
	font-family: 'Cedarville Cursive', cursive;
	font-size: 7vmax;
	font-weight: regular;
	line-height: .8;
	margin: 0;
	outline: none;
	padding: 0 10% 1.2% 10%;
	text-align: center;
	transition: color $anim; // To work with JS
	letter-spacing: 200px;

}

h3{
	font-family: 'Roboto', sans-serif;
	color: cadetblue;
	text-align: center;
	font-size: 1.8vw;
	line-height: 30px;
	margin-top: 10%;
}

a{ 
	text-decoration: none;
}

