body {
    display: flex;
    flex-direction: column;
    font-size: 10pt;
}

header {
    display: flex;
    justify-content: space-between;
}

header .right {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: flex-end;
}

header nav a {
    margin: 0 1vmin;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid gray;
}

main p {
    padding-left: 10%;
}
/* /blog */

.blog {
    display: flex;
    justify-content: space-evenly;
    margin: 2vmin;
}
.blognav   {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* /comic */

.comic_gallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 2vmin;
    list-style-type: none;
}
.comic_gallery img {
    width: 30%;
    height: auto;
}