* {
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family: 'Poppins', sans-serif;
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
}

body, html {
	font-family: 'Lobster', cursive;
	font-size:16px;
	transition:transform 2s linear;
}

@keyframes ios {
	0% {transform:rotate(-0.1deg);}
	50% {transform:rotate(0.1deg);}
	100% {transform:rotate(-0.1deg);}
}
body {
	min-height:calc(var(--vh, 1vh) * 100);
	display:flex;
	flex-direction:column;
}

button {
	font-size:14px;
	cursor:pointer;
	margin:0;
	border-width:1px 1px 5px 1px;
	border-radius:6px;
	border-style:solid;
	border-color:transparent;
	user-select:none;
	outline:none;
	-webkit-text-fill-color:inherit;
}

button:active {
	border-width:1px 1px 2px 1px;
	margin-top:3px;
}

button.gray {
	background-color:#f4f4f4;
	border-color:#bfbfbf;
}

.update:active svg {
	transition:all 0.2s;
	transform:rotate(360deg);
}