@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");

.animation {
	background-color: black;
	max-width: 600px;
	margin: 2em auto;
}

.shaker {
	transform-origin: center;
	fill: none;
	stroke: rgb(255, 134, 5);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4px;
	animation: shake 0.5s ease-in 10;
}
.limeBar {
	fill: rgb(255, 134, 5);
	font-size: 50px;
	font-family: "Caveat", cursive;

	animation: text 5s ease-out;
}

@keyframes shake {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(10deg);
	}
	75% {
		transform: rotate(-10deg);
	}
}
