.design-section
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.design
{
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline
{
	width: 80%;
	height: auto;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.timeline-content
{
	padding: 1.75rem;
	transition: 0.4s ease;
	overflow-wrap: break-word !important;
	margin: 1rem;
	margin-bottom: 20px;

	position: relative;
	color: #372b2d;
	box-sizing: content-box;
	border: 30px solid;
	background-clip: content-box;
	border-image: url(/core/assets/img/ui/game_menu_frame.webp) 30 fill round;
	z-index: 1;
}

.timeline-content:hover
{
	filter: invert(1);
}

.timeline-component
{
	margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 1000px)
{
	.timeline
	{
		display: grid;
		grid-template-columns: 1fr 3px 1fr;
	}

	.timeline-middle
	{
		position: relative;
		background: #c7b29a;
		width: 3px;
		height: 100%;
	}

	.main-middle
	{
		opacity: 0;
	}

	.timeline-circle
	{
		position: absolute;
		top: 0;
		left: 50%;
		width: 15px;
		height: 15px;
		background: #c7b29a;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		transition: 0.4s ease;
	}

	.timeline-circle:hover
	{
		filter: invert(1);
	}
}