a {
	color: white;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');

:root {
	--red: #ff6666;
	--orange: #f8b654;
	--yellow: #efdc61;
	--green: #90ee90;
	--blue: #8f9efb;
	--purple: #9477cb;
}
body {
	margin: 0;
	padding: 0;

	height: 100vh;

	overflow: hidden;
	background-color: #23272a;
	color: white;
	font-family: 'Montserrat', sans-serif;

	user-select: none;
	cursor: url('../images/cursor.svg'), default;
}
