
	em.svelte-1mon8p4 {
		color: rgb(255, 238, 172);
	}

	.grid.svelte-1mon8p4 {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 1em;
	}

	p.svelte-1mon8p4:has(.trancuated) {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2; /* number of lines to show */
		line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.head.svelte-1mon8p4 {
		background-color: var(--bg-color);
		position: sticky;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		z-index: 10;
		padding: 2em;
		width: 100%;
		box-shadow: 0 20px 20px var(--bg-color);
	}

	.grave.svelte-1mon8p4 {
		/* font-size: 3em; */
		animation: svelte-1mon8p4-graveFloat 3s ease-in-out infinite;
	}

	@keyframes svelte-1mon8p4-graveFloat {
		0% {
			transform: translateY(0);
		}
		50% {
			transform: translateY(-0.2em);
		}
		100% {
			transform: translateY(0);
		}
	}
