.txt {
	display: flex;
}

.bug {
	height: 0px;
	width: 0px;
}

html {
  height: 100%;
  width: 100%;
}

#click {
	background-color: rgba(255, 255, 255, 0);
	border:0px;
}

#shop {
	position: absolute;
	right: 2%;
	top: 2%;
}

@keyframes wiggle {
	0% {transform: rotate(-15deg)}
	50% {transform: rotate(15deg)}
	100% {transform: rotate(-15deg);}
}


@keyframes bounce {
	0% {transform: scale(0.9)}
	50% {transform: scale(1.1);}
	100% {transform: scale(0.9);}
}

/* #click {
	-webkit-animation-name: wiggle, bounce;
	-webkit-animation-duration: 1.5s, 3s;
} */

#click:hover {
	transform: scale(1.1);
}

#shop:hover {
	transform: scale(1.1);
}

.table{
	margin: auto;
	width: 50%;
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
}

body {
	background-color: tan;
}