.lead-image {
    background-size: cover;
    background-position: right bottom;
    height: 30em;
    margin-left: auto;
    margin-right: auto;
}

.lead-footer {
	font-size: .875em;
    color: #6c757d;
}

.text-mono {
	font-family: monospace;
    font-size: 0.9rem;
}

* {
  box-sizing: border-box;
}

.blog-post ul {
  margin: 0;
  padding: 0;
}

.blog-post ul li {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 0 0 1rem 0;
    padding: 12px 8px 12px 40px;
    border-radius: 20px;
    background: #e4e4e4;
    font-size: 18px;
    transition: 0.2s;

    -webkit-user-select: none;  
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blog-post ul li:nth-child(odd) {
  background: #fafafa;
}

.blog-post ul li:hover {
  background: #d3d3d3;
}

.blog-post ul li.checked {
  background: #797979;
  color: #fff;
  text-decoration: line-through;
}

.blog-post span {
    display: inline-flex;
    align-items: center;
    padding-right: 6px;
    width:25px;
}

.blog-post p {
    font-size: 1.2rem;
}