* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: black;
    font-family: Georgia, serif;
    display: flex;
    justify-content: center;
    padding: 40px;
}

#container {
    width: 900px;
    border: 1px solid black;
    background: white;
}

.header {
    padding: 25px;
    border-bottom: 1px solid black;
    text-align: center;
}

.header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    font-weight: normal;
}

.header p {
    margin-top: 6px;
    color: black;
}

.content {
    display: flex;
    height: 600px;
}

.blogs {
    width: 30%;
    border-right: 1px solid #555;
    overflow-y: auto;
    padding: 20px;
}

.blogs p {
    margin-bottom: 10px;
    cursor: pointer;
}

.blogs p:hover {
    color: white;
    text-decoration: underline;
}

.viewer {
    width: 70%;
    padding: 20px;
    overflow-y: auto;
}

.viewer h2 {
    margin-bottom: 15px;
    font-weight: normal;
}

#blog-content {
    white-space: pre-wrap;
    line-height: 1.6;
}

.float-posts{
    display:none;
    margin-left:20px;
}

.folder{
    cursor:pointer;
}