*{margin: 0;}

:root {
	--buttonHeight: 50px;
}

body {
	text-align: center;
}

.game-title {
	font-family: 'Baloo', cursive;
	background-color: #F2D0D0;
	color: black;
	padding: 40px 0 30px;
}

.title {
	font-size: 100px;
	line-height: 1em;
}

.tagline {
	font-size: 40px;
	line-height: 1em;
}

.remaster-text {
	font-size: 25px;
	font-style: italic;
	line-height: 50px;
}

.button {
	height: var(--buttonHeight);
	width: 240px;
	display: inline-block;
	box-shadow: inset 0 0 0 3px #F5006D;
	font-family: "Baloo", sans-serif;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	background-color: white;
	color: #F5006D;
	overflow: hidden;
}

#icon {
	margin-right: 8px;
}

.button-primary, .button-secondary {
	display: block;
	padding: 0 15px;
	line-height: var(--buttonHeight);
	transition: margin 0.3s;
}

.button-primary {
	background-color: #F5006D;
	color: white;
}

.button:hover .button-primary {
	margin-top: calc(-1 * var(--buttonHeight));
}
