#content h2 {
	margin: 16px 0;
	color: black;

	& a {
		text-decoration: none;
		color: black;
	}
}

#content h3 {
	width: 100%;
	text-align: center;
	margin: 16px auto 2rem auto;
	color: black;

	/* margin-bottom: 2rem; */

	& a {
		text-decoration: none;
		color: black;
	}
}

#content h4 {
	width: 100%;
	text-align: center;
	margin: 0.5rem auto 2rem auto;
	color: black;

	/* margin-bottom: 2rem; */

	& a {
		text-decoration: none;
		color: rgb(255, 76, 204);
	}
}

#content h2:not(:first-child) {
	margin-top: 42px;
}

#content h2:first-child {
	width: 100%;
	color: rgb(255, 166, 0);
	text-align: center;
	font-size: 40px;
	margin: 2rem 0 1rem;
	line-height: 44px;

	word-break: keep-all;

	& a {
		color: rgb(255, 166, 0);
	}
}

#content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1rem 3rem 2rem 3rem;
	font-size: 16px;
	line-height: 24px;
	box-sizing: border-box;

	background-color: white;
}

img {
	align-self: center;
	width: auto;
	margin: 1rem auto;
	display: block;
}

.timetable-image {
	width: 100%;
	max-width: 300px;
	max-height: 500px;
	height: auto;
	object-fit: contain;

	margin: 2rem auto;
	display: block;

	-webkit-filter: blur(0.5px);
	-moz-filter: blur(0.5px);
	-o-filter: blur(0.5px);
	-ms-filter: blur(0.5px);
	filter: blur(0.5px);
	border: 7px solid rgb(255, 115, 0);

	@media screen and (max-width: 500px) {
		max-width: 65%;
		max-height: 350px;
		border: 7px solid rgb(255, 115, 0);
		-webkit-filter: blur(0.35px);
		-moz-filter: blur(0.35px);
		-o-filter: blur(0.35px);
		-ms-filter: blur(0.35px);
		filter: blur(0.35px);
	}
}

#content .article-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;

	gap: 10px;
}

#content p {
	line-height: 26px;
}

#content li {
	list-style-type: ' - ';
	margin-left: 10px;
	line-height: 28px;
}

table {
	width: auto;
	word-break: break-all;

	margin: 20px 0 30px 0;
}

/* 좁은 화면시 */
@media (max-width: 500px) {
	#content {
		padding: 1.3rem;
	}
}

@keyframes bounce {
	0%,
	4%,
	10%,
	16%,
	20% {
		transform: translateY(0);
	}
	4% {
		transform: translateY(-10px);
	}
	6% {
		transform: translateY(-5px);
	}
}
