@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

* {
	box-sizing: border-box;
}

.thumbernail_body {
	--h: 212deg;
	--l: 43%;
	--brandColor: hsl(var(--h), 71%, var(--l));
	/*font-family: Montserrat, sans-serif;*/
	margin: 0;
	/*background-color: whitesmoke;*/
}


.thumbernail_p {
	margin: 0;
	line-height: 1.6;
}

ol {
	list-style: none;
	padding: 0 1rem;
}

.thumbernail_li {
	
	position: relative;
	max-width: 45rem;
	margin: 2rem auto;
	padding: 2rem 1rem 1rem;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: rgb(201, 166, 166);
}

.thumbernail_a {
	text-decoration: none;
}


.thumbernail_li::before {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}

.thumbernail_h3 {
	display: flex;
	align-items: baseline;
	margin: auto;
	color: rgb(70 70 70);
}

.thumbernail_h3::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	/*content: counter(list);*/
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--c1);
	color: rgb(201, 166, 166);;
}

@media (min-width: 40em) {
	.thumbernail_li {
		margin: 3rem auto;
		padding: 3rem 2rem 2rem;
	}
	
	.thumbernail_h3 {
		font-size: 2.25rem;
		margin: auto;
	}
	
	.thumbernail_h3::before {
		margin-right: 1.5rem;
	}
}