body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
}


#article-list-container {
    position: absolute;
    left: 0;
    width: 25%;
    height: 100%;
    padding-left: 1%;
    padding-top: 1%;
    display: flex;
    align-items: top;
}

.floatting-container {
    list-style: none;
    position: fixed;
    float: center;
    width: 200px;
    background-color: #fafafa;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    z-index: 10;
}

.article-list-header {
    color: #333;
    font-weight: 700;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-bottom: 20px;
    padding-top: 10px;
    font-size: large;
}

/*section header*/
.article-list-section {
    color: #333;
    text-decoration: none;
    padding: 10px 5px;
    display: block;
    text-align: center;
}

/*text wrapper*/
.article-list li {
    background-color: transparent;
    border-radius: 10px;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*text*/
.article-list a {
    color: #333;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-list li:hover {
    background-color: #e6e6e6;
}

#article-content-container {
    width: 75%;
    height: 100%;
    margin-top: 1%;
    margin-left: 240px;
    margin-right: 15%;
}

#article-content {
    float: center;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #f2f2f2;
    color: #333;
    width: 100%;
}

footer a {
    color: #333;
    text-decoration: none;
}