body {
	background-color: #121212;
	font-family: "Chakra Petch", sans-serif;
	color: #eeeeee;
	margin: 0;
}

#content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	height: 100vh;
}

#counter {
	text-align: right;
}

#counter > * {
	margin: 0;
}

#counter h1 {
	margin-top: -7px;
}

#counter h2 {
	margin-top: -6px;
}

#counter h4 {
	margin-top: -2px;
}

#row {
	display: flex;
	justify-content: space-between;
}

#code {
	min-width: 24rem;
}

.shiki {
	margin: 0;
}

.loading-card {
	bottom: 0;
	opacity: 1;
	width: 100vw;
	height: 100vh;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	user-select: none;
	background-color: #121212;
}

.loading-card.slide-out {
	background-color: transparent;
	opacity: 0;
	transition-delay: 0.1s;
	transition-duration: 0.75s;
}

.loading-card.slide-out .loading-title {
	font-size: 0;
	transform: rotate(180deg);
}

.loading-card .loading-title {
	scale: 100%;
}

.loading-title {
	transform: translate(22.5px, -35.5px);
}

.loading-card.slide-out .loading-title {
	scale: -20%;
	transition-delay: 0.1s;
	transition-duration: 0.75s;
}

.loading-card.slide-out h3 {
	scale: -20%;
	transition-delay: 0.1s;
	transition-duration: 0.75s;
}

/* effects */
.lds-ring {
	/* change color here */
	color: #eeeeee;
}

.lds-ring,
.lds-ring div {
	box-sizing: border-box;
}

.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 14px;
	height: 150px;
	margin: 8px;
	border: 8px solid currentColor;
	border-radius: 20%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#jjx {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
