#main .home-question-entries a {
    display: inline-block;
    width: 100%;
    margin: 15px 0 0;
    line-height: 30px;
    font-weight: 400;
    text-decoration: none;
    font-size: 17px;
    counter-increment: question-entries;
    box-sizing: border-box;
}
#main .home-question-entries a:before {
    display: inline-block;
    content: "#"counter(question-entries);
    color: #acacac;
    margin-right: 5px;
    font-size: 16px;
}

body.home {
    counter-reset: question-entries;
}


@media (min-width:600px) and (max-width: 1019px), (min-width:1100px){
    body #main .home-question-entries a {
        padding-right: 20px;
        width: 50%;
        vertical-align: top;
    }
}