body {
    text-align: center;
}

a {
    color: black;
    text-decoration: none;
}

h1 {
    font-size: 2em;
    text-shadow: 0px 0px 10px #333;
}

img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0px 0px 10px #000;
}

img:hover {
    box-shadow: 0px 0px 10px green;
}

article div {
    padding-left: 30px;
    padding-right: 30px;
}

.article {
    width: 860px;
    border-bottom: 1px dotted black;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.article:last-child {
    border-bottom: none;
}

.article h2 {
    margin-left: auto;
    margin-right: auto;
    background-color: skyblue;
    padding: 5px;
}

.article p {
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    text-align: justify;
}

.article-meta span {
    display: block;
    text-align: right;
    padding-right: 30px;
}