@font-face {
	font-family: Anurati;
	src: url('fonts/Anurati.woff');
}

:root {
	--background-color: #000000;
	--foreground-color: #ffffff;
}

@media (prefers-color-scheme: light) {
	:root {
		--background-color: #ffffff;
		--foreground-color: #000000;
	}
}

html {
	-webkit-tap-highlight-color: transparent;
}

body {
	background-color: var(--background-color);
	color: var(--foreground-color);
}

.main-div {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-family: Anurati;
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

.buttons-container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	font-family: Anurati;
	gap: 10px
}

.button {
	align-items: center;
	background-color: #BCC6F9;
	border: 0;
	border-radius: 4px;
	color: white;
	display: flex;
	font-family: Anurati;
	font-size: 0.95rem;
	height: 40px;
	justify-content: center;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	text-decoration: none;
}

@media screen and (min-width: 1000px) {
	.button:hover { 
		animation: wiggle 100ms;
		animation-iteration-count: 5;
		animation-timing-function: linear;
	}
}
