.item
{
    outline: none;
    color: #fff;
    text-decoration: none;

    display: block;

    width: 100%;

    background-color: #191d2b;
    border: 1px solid #1f2135;

    -webkit-transition: background-color 50ms linear;
    -ms-transition: background-color 50ms linear;
    transition: background-color 50ms linear;

    box-shadow: 2px 2px 3px #0000004f;
    border-radius: 10px;
    overflow: hidden;
}
.item:not(:last-child)
{
    margin-bottom: 12px;
}
.item > div
{
    padding: 10px 10px 12px 12px;
}
.item:hover
{
    background-color: #141824;;
}
.item .header
{
    padding-bottom: 4px;
    font-size: 1em;
}
.item .description
{
    padding-top: 6px;
    font-size: 0.85em;
    font-style: italic;
}

h2:not(:first-of-type)
{
    margin-top: 40px;
}