#timeline {
	border-left: 4px solid var(--primary-color);
	padding-left: 20px;
}

.timeline-item {
	position: relative;
	border: 1px solid var(--primary-color);
	padding-left: 20px;
	border-radius: 10px;
	margin-bottom: 40px;
}

/* section should have a line sticking out the left that connects to the timeline */
.timeline-item:before {
	content: '';
	line-height: 2px;
	font-size: 2rem;
	position: absolute;
	width: 20px;
	height: 4px;
	background-color: var(--primary-color);
	top: calc(50% - 2px);
	left: -21px;
	vertical-align: 50%;
}

@media (orientation: portrait) and (pointer:none), (pointer:coarse) {
	.timeline-item {
		padding: 30px;
		margin-left: 10px;
	}
	.timeline-item:before {
		left: -31px;
		width: 30px;
	}
}