body {
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    padding-top: 10px;
    border-top: 3px solid blue;
    border-bottom: 1px solid black;
    text-align: center;
}

.logo {
    background-color: black;
    width: 250px;
    height: 75px;
}

.headerlinks {
    text-decoration: none;
    font-weight: bolder;
    color: black;
    padding: 5px;
}

.cover {
    display: inline;
    background-color: black;
    width: 70%;
    height: 250px;
    margin: 20px;
    margin-right: 5px;
    position: relative;
}

.covertext {
    color: black;
    background-color: white;
    position: absolute;
    width: 75%;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    bottom: 25px;
    left: 15px;
}

.right {
    display: inline;
    text-align: left;
    padding-top: 20px;
}

.primary {
    display: flex;
}

@media screen and (min-width: 800px){
    .cover {
        flex: 1;
    }
    .primary, .indexcontent, .article {
        padding: 0 50px 0 50px;
    }
    .articlecontent {
        padding: 0 15px 0 15px;
    }
    .primary, .indexcontent, .article {
        padding: 0 50px 0 50px;
    }
    .articlecontent {
        padding: 0 15px 0 15px;
    }
    .covertext {
        font-size: 21pt;
    }
}
@media screen and (max-width: 800px){
    .logo {
        margin-left: 17.5%;
        margin-right: 17.5%;
    }
    .articlecontent {
        padding: 0 5px 0 5px;
    }
    .covertext {
        font-size: 17pt;
    }
}

a {
    color: blue;
}

.authorinfo {
    font-weight: bold;
    font-style: italic;
}

.articlecontent {
   text-align: justify;
}

.quote {
    border: 1px dashed darkcyan;
    display: inline-block;
}

a>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}