.extras {

	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	

}
.shortmenu {
	display: inline-block;
	border-radius: 10px;

}
ol {
	
	padding: 1rem;
	border: 0.1rem solid lightgrey;
	columns: 20rem;
	column-gap: 4rem;
	column-rule: 0.2rem dotted turquoise;
	border-radius: 0.5rem;
}
ol li {
	padding: 1rem;
	list-style: none;
	background-color:rgba(0, 0, 0, 0.803);
	color: rgb(229, 225, 225);
	border-radius: 0.75rem;

	box-shadow: 0.25rem 0.25rem 0.5rem rgb(0 0 0 / 0.17);
	font-size: 15px;
	margin: 15px;

}
li::before {
	
	content: counter(list-item);
	font-weight: 700;
	font-size: 1.1em;
	font-style: italic;
	letter-spacing: -0.125em;
	line-height: 1;
	color: var(--clr6);
	grid-column: 1;
	grid-row: span 2;
	align-self: end;
	margin: 0 0 -0.15em -0.15em;
	padding: 1rem;
}

li span {
	grid-column: 2;
}

li span:first-of-type {
	font-size: 1.5em;
	padding-top: 1rem;
}

li span:last-of-type {
	font-style: italic;
	padding-bottom: 1rem;
}
