body {
	padding-top: 20px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 
	/* margin-bottom: .5em; */
}
.btn {
	margin-bottom: .2em;
}
.header {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: .5em;
	line-height: 1.2;
}
.header a {
	font-style: normal;
	background: #F44336;
	color: white;
	padding: 2px 20px;
	text-transform: uppercase;
	border-radius: 5px;
	box-shadow: 0 0 1000px 30px #00BCD4;
}
.header a:hover{
	color: white;
	text-decoration: none;
}
.cards{
	display: grid;
	grid-template-columns: auto;
	grid-gap: 20px;
	margin: 20px 0;
}
.card {
	display: grid;
	grid-template-columns: 70% 30%;
}

@media (max-width: 768px) {
.card {
	grid-template-columns: 100%;
}
	
}

.card-code {
	overflow: auto;
	font-size: 10px;
	padding: 15px;
}
/*
@media(max-width: 991px){
	.cards{
		grid-template-columns: auto;
	}
}
*/

pre.code label {
    /* border-bottom: 1px solid; */
    color: #9C27B0;
    text-transform: lowercase;
    margin-bottom: 10px;
    font-size: smaller;
}



.anchor-link {
	font-weight: 400;
	color: rgba(0,123,255,.5);
	transition: color .15s ease-in-out,opacity .15s ease-in-out;
	opacity: 0;
	-webkit-font-smoothing: antialiased;
	text-decoration: none;
}

.card:hover .anchor-link {
	opacity: .5;
}

.card:hover .anchor-link:hover {
	opacity: 1;
	color: #007bff;
	text-decoration: none;
}