body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100vh;
	background-color: #FDCA40;
	color: #073B3A;
	font-family: 'Source Code Pro', monospace;
	margin: 0;
	padding: 1rem;
	text-align: center;
	overflow: hidden;
}

.speech-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.speech-bubble {
	background: white;
	border: 4px solid #073B3A;
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	max-width: 700px;
	position: relative;
	color: #073B3A;
}

.speech-bubble::after {
	content: '';
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 20px 20px 0;
	border-style: solid;
	border-color: white transparent transparent transparent;
	filter: drop-shadow(0 -2px 0 #073B3A);
}

.chan-gif {
	height: 40vh;
	margin-bottom: 0.5rem;
}

.icon-links a:hover img {
	transform: scale(1.2);
}

.speech-bubble {
	background: white;
	border: 4px solid #073B3A;
	border-radius: 1rem;
	max-width: 700px;
	position: relative;
	color: #073B3A;
	box-shadow: 4px 4px 0 #073B3A, 8px 8px 0 white;
	outline: 2px solid #073B3A;
	outline-offset: -10px;
	font-family: 'Source Code Pro', monospace;
}

.icon-links {
	display: none;
	justify-content: center;
	gap: 1rem;
	margin: 0.5rem;
}

.icon-links.show {
	display: flex;
}

.icon-links a {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.icon-links a.show {
	opacity: 1;
}

.fade-in {
	opacity: 0;
	transition: opacity 1s ease-in;
}

.fade-in.show {
	opacity: 1;
}

.typed-text {
	padding-bottom: 2rem;
}

.spacer {
	margin-top: 20px;
}

