* {
    font-family: Helvetica, "Microsoft Yahei", "Hei", sans-serif;
    font-weight: lighter;
    box-sizing:border-box;
    margin:0;
    padding:0;
}

a, p, ol, ul, td {
    font-size: 16px;
    line-height: 23px;
    color:#555
}

h1, h2, h3, h4, h5 {
    font-weight: normal;
    color:black
}

h1 {
    font-size:20px;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: row;
}

h1 a {
    padding: 0;
    font-size: 18px;
    text-decoration:none
}

h2 {
    font-size:18px
}

body {
    width: 800px;
    height: 100%;
    padding: 40px;
    margin: 0 auto;
    background-color:#FAF9F0;
    display: flex;
    flex-direction: row;
    gap:40px;
}

a {
    text-decoration: underline;
    font-weight:normal
}

a:visited {
    color:#333
}

a:hover {
    color:#df363d
}

div.field, div.actions {
    margin-bottom:10px
}

div.pagination {
    text-align:center
}

div.pagination a {
    min-width: 19px;
    margin: 3px;
    padding: 10px;
    text-decoration: none;
    background-color:rgba(200, 200, 200, 0.3)
}

div.pagination a:hover {
    background-color:rgba(200, 200, 200, 0.8)
}

.quote {
    padding: 5px 8px;
    background-color:rgba(200, 200, 200, 0.3)
}

.quote:before, .quote:after {
    content: '" '
}

.side {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap:6px;
    flex:1;
    flex-wrap: wrap;
}

.side a {
    text-decoration:none
}

.side .avatar {
    display: flex;
    align-items:center;
    flex-direction: row;
    justify-content: center;
}

.side p {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap:5px;
    align-items:center;
}

.content {
    flex:4;
}

.content a {
    padding:0 5px
}

.content h1 {
    justify-content: left;
}

div.c {
    display: flex;
    flex-direction: column;
    gap:10px;
    margin-bottom:20px;
}

@media only screen and (max-width: 800px) {
    body {
        width: 100%;
        flex-direction: column;
    }
    .side {
        flex-direction: row;
    }
  }


