/* This is CSS for WitchPHD's article page */

.article_list li {
    list-style: none;
    margin: auto;
    width: 40%;
}

.article_list li{
    border: 1px solid #a8e;
    text-decoration: none;
    display: inline-table;
    border-radius: 10px;
    font-weight: normal;
    padding: 10px;
    margin: 10px;
}

.article_list li:hover{
    transform: translate(-8px, -8px);
    box-shadow: 8px 8px 0px #938;
    background: #a8e;
    color: #111;
}

.article_list li:hover a{
    color: #fff;
}

.article_list img{
    border-radius: 10px;
    margin-right: 10px;    float: left;

    width: 40%;
}

@media screen and (max-width: 800px) {
  .article_list img{
    margin-bottom: 10px;
    width: 100%;
  }
  .article_list li {
    width: 80%;
}
}
