.main-paper {
    display: flex;
    flex-direction: row;
}
.aside {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    /* background-color:#005f5f; */
    background-color:rgb(34,70,94);
    color:white;
    width:15%!important;
}
.aside > div {
    display: block;
    justify-content: center;
    text-align: center;
    font-size:24px;
    padding: 4px;
    transition: .5s ease;
}
.aside > div:hover {
    /* border-left:8px solid #005f5f; */
    border-left:8px solid white;
    /* background-color: #444; */
    background-color: #242424;
    color: #fff;
}

.main-article {
    padding: 10px;
}
.main-article h1 {
    margin-left: 10px;
}
.link-detail a {
    list-style-type: none;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}
.link-detail a:visited {
    color: #fff;
    font-size: 24px;
}
.post-paper {
    font-family: 'Times New Roman', Times, serif;
    font-size: "20px";
    line-height: 1.75em;
}
.main-article > ol {
    list-style-type: decimal;
}