@import "fonts/Tixota/stylesheet.css";

:root {
	--tix-font-family: 'Tixota', serif;
	--tix-text-color: #333;
	--tix-brand-bg: gold;
}

html {
	min-height: 100%;
	overflow: hidden;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 100vh;
	color: var(--tix-text-color);
	background-color: var(--tix-brand-bg);
	font-family: var(--tix-font-family);
	display: flex;
	align-items: center;
	justify-content: center;
}

h1 {
	font-size: 100px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}